:root {
	--white: hsl(0, 0%, 100%);
	--black: hsl(60, 4%, 11%);
	--red:   hsl(356, 95%, 46%);
	--gray:  hsl(90, 3%, 88%);
}

html {
	font-family: sans-serif;
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
}

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

p {
	font-size: 1.6rem;
}
a {
	color: var(--black);
}
.container {
	width:100%;
	max-width: 110rem;
	margin: 0 auto;
	padding: 0 1rem;
}
.header,
.footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}
.header .logo,
.footer .logo {
	width: 250px;
}
.contacts {
	display: flex;
}
.contacts__mail {
	display: flex;
	align-items: center;
	margin-right: 1rem;
}
.contacts__phone {
	display: flex;
	align-items: center;
}
.icon {
	margin-right: .5rem;
}
.icon > img {
	width: 2rem;
}
.hero-section {
	color: var(--white);
	background-image: url(image/banner-bg.jpg);
}
.banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20rem;
	padding-bottom: 20rem;
}

.banner .title {
	font-size: 6rem;
	font-weight: 600;
	text-transform: uppercase;
}
.banner .list {
	display: flex;
	font-size: 3rem;
}
.banner .list li {
	padding: .1rem 1rem;
	
}
.banner .list li:not(:last-child) {
	border-right: .3rem solid var(--red);
}
.info {
	padding: 6rem 0;
}
.info h2 {
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
.info ul {
	margin: 1rem 0 0 2rem;
}
.info ul li {
	margin-bottom: 0.5rem;
	list-style: disc;
}
.brand {
	padding: 6rem 0;
	background-color: var(--gray);
}
.brand p {
	margin-bottom: 1rem;
}
.brand-item {
	display: grid;
  	grid-template-columns: 338px 1fr;
  	gap: 2rem;
	margin-bottom: 3rem;
}
footer {
	background-color: var(--black);
}
.footer {
	max-width: 50rem;
	margin: 0 auto;
	padding: 6rem 0;
}
.footer a {
	color: var(--white);
}
.footer .contacts {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
@media (max-width: 768px) {
	.header, .footer {
		flex-direction: column;
	}
	.contacts {
		flex-direction: column;
	}
	.contacts__mail {
		margin-right: 0;
		margin-bottom: 1rem;
	}
	.banner {
		padding-top: 7rem;
  		padding-bottom: 7rem;
	}
	.banner .title {
		font-size: 4rem;
	}
	.banner .list {
		font-size: 1.5rem;
	}
}
@media (max-width: 820px) {
	.brand-item {
		grid-template-columns: 1fr;
	}
}