
:root {
	--body-background-color: #000;
	--color: #E8E8E8;

	--header-background-color: #E8E8E8;
	--main-background-color: #000;
	--footer-background-color: #E8E8E8;

	--grey-color: #606060;

	--ui-background-color: #E8E8E8;
	--ui-active-color: #c0c0c0; /* hover, focus */

	/* --the-red-color: #C8102E; */
	--the-red-color: #B4112F; /* rgb(180, 17, 47) */

	--logo-alt-color: #000;
}

/*------------------------------------------------------------------------*/
/* reset */

* {
	vertical-align: baseline;
	font-weight: inherit;
	font-family: inherit;
	font-style: inherit;
	font-size: 100%;
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
}
:focus {
	outline: 0;
}

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

body {
	line-height: normal;
}

ol, ul {
	list-style: none;
}

table {
	_border-collapse: separate;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
blockquote, q {
	quotes: '' '';
	quotes: none;
}

/*----------------------------------*/

h1,h2,h3,h4,h5,h6 {
	padding: 0.5rem 0;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.17rem; }
h4 { font-size: 1.0rem;  }
h5 { font-size: 0.83rem; }
h6 { font-size: 0.67rem; }

b {
	font-weight: bold;
}

cite {
	font-style: italic;
}

q {
	quotes: '“' '”' '‘' '’';
}
q::before {
	content: open-quote;
}
q::after {
	content: close-quote;
}

a:link, a:visited {
	color: var(--the-red-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	outline: 0.2rem solid var(--the-red-color);
}
a[href^="tel"] {
	white-space: nowrap;
}

p {
	margin: 0.75rem 0;
}

dd, li {
	margin-left: 2rem;
}

hr {
	margin: 1rem 0;
	outline: 0.1rem solid var(--the-red-color);
}

input, textarea, button {
	padding: 0.5rem;
	color: #000;
	background-color: var(--ui-background-color);
	border-radius: 5px;
}
textarea {
	height: 10rem;
}

input:hover,
textarea:hover,
button:hover {
	background-color: var(--ui-active-color);
}

input:focus,
textarea:focus {
	outline: 0.2rem solid var(--the-red-color);
}

/*input:invalid,
textarea:invalid {
	outline: 0.2rem solid var(--the-red-color);
}*/

button:focus {
	outline: 0.2rem solid var(--the-red-color);
}
button:disabled {
	color: var(--grey-color);
}

/*------------------------------------------------------------------------*/

html {
	font-size: 16px;
	scroll-behavior: smooth;
}
@media screen and (max-width: 550px) {
	html {
		font-size: 12px;
	}
}

body {
	margin: 0 auto;
	max-width: 60rem;
	font-family: Verdana, sans-serif;
	background-color: var(--body-background-color);
	color: var(--color);
}

/*------------------------------------------------------------------------*/

noscript > div {
	height: 4rem;
	text-align: center;
}
noscript > div > span  {
	color: var(--the-red-color);
	font-size: 1.5rem;
	font-weight: bold;
	vertical-align: middle;
	line-height: 4rem;
}

/*------------------------------------------------------------------------*/

header {
	padding: 3rem;
	background-color: var(--header-background-color);
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 2rem;
}

header > a:nth-child(1):hover {
	text-decoration: none;
}
header > a:nth-child(1) > img {
	height: 5rem;
}

header > nav {
	_font-family: Roboto, sans-serif;
	font-size: 1rem;
}
header > nav > ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
header > nav > ul > li {
	margin: 0;
}
header > nav > ul > li > span {
    display: flex;
    align-items: center;
	justify-content: center;
}
header > nav > ul > li > span > img {
	height: 1rem;
}

/*------------------------------------------------------------------------*/

main {
	background-color: var(--main-background-color);
}

/*------------------------------------------------------------------------*/

footer  {
	padding: 1rem;
	background-color: var(--footer-background-color);
	text-align: center;
}

footer > nav  {
	_font-family: Roboto, sans-serif;
	margin-bottom: 2rem;
}
footer > nav > ul  {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
footer > nav > ul > li  {
	margin: 0;
}
footer > nav > ul > li > span  {
    display: flex;
	justify-content: center;
    align-items: center;
}
footer > nav > ul > li > span > img  {
	height: 1rem;
}

footer > span {
	font-size: 0.75rem;
	color: var(--grey-color);
}

/*------------------------------------------------------------------------*/

.img1 {
	height: 2rem;
}
.img2 {
	height: 1.5rem;
}
.img3 {
	height: 1.17rem;
}
.img4 {
	height: 1rem;
}
.img5 {
	height: 0.83rem;
}
.img6 {
	height: 0.67rem;
}

.val {
    display: flex;
    justify-content: left;
    align-items: center;
}
.vac {
    display: flex;
    justify-content: center;
    align-items: center;
}
.var {
    display: flex;
    justify-content: right;
    align-items: center;
}

/*------------------------------------------------------------------------*/
