* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

.header {
  padding-top: 20px;
  background: url("../img/header.png") no-repeat center center / cover;
  height: 100vh;
}

.header__nav {
  display: flex;
  justify-content: space-between;
}

.header__lists {
  display: flex;
  align-items: center;
}

.header__link {
  color: #4d4d4d;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 40px 20px 20px;
  transition: 0.5s;
}

.header__link:hover {
  background: #c1bc45;
  padding: 40px 20px 20px;
  color: #fff;
}

.header__content {
  margin-top: 299px;
}
.header__content__title {
  color: #c1bc45;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.header__content__text {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #4d4d4d;
}

.header__content__span {
  color: black;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.main {
  margin: 100px 0 100px 0;
}

.main__content {
  display: flex;
  column-gap: 30px;
}

.main__description {
  width: 585px;
}

.main__description__title {
  color: #4d4d4d;
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 50px 0 25px 0;
}

.main__description__span {
  color: #000000;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}

.main__description__text {
  color: #4d4d4d;
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.main__products {
  width: 585px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.main__product {
  display: flex;
  align-items: center;
  column-gap: 30px;
  border: 4px solid #c3c3c3;
  padding: 25px;
}

.main__product__title {
  color: #000000;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0%;
}

.main__product__text {
  color: #000000;
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.footer {
  background: #d9d9d9;
  padding: 100px 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__lists {
  display: flex;
  column-gap: 50px;
}

.footer__link {
  color: #4D4D4D;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: .5s;
}
.footer__link:hover{
  color: #FF0000;
  border-bottom: 2px solid #FF0000;
}