ul {
  list-style: none;
}

a:hover, button:hover {
  opacity: 0.5;
  cursor: pointer;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 93px 24px 95px;
  align-items: center;
}

.header__menu {
  display: flex;
  justify-content: flex-start;
}

.header__links-list {
  display: flex;
  gap: 37px;
  padding-left: 27px;
}

.header__links-list-item {
  list-style: circle;
  font-size: 18px;
}

.header__links-list-item_no-bullit {
  list-style: none;
}

.header__link {
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.header__link_active {
  text-decoration: none;
}

.header__logo {
  display: block;
  justify-self: center;
  width: 135px;
}

.header__logo:hover {
  opacity: 1;
  cursor: auto;
}

.address {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.18px;
}

.header__address {
  justify-self: end;
  padding-right: 60px;
}

.address a {
  text-decoration: none;
  border-bottom: 1px solid;
}

/*COVER*/
.cover {
  position: relative;
  background: url(../images/cover.jpg) no-repeat center / cover;
  color: #fff;
}

.overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cover__title,
.cover__description-text,
.bet-button {
  position: relative;
  z-index: 2;
}

.cover__title {
  padding: 165px 50px 0;
}

.aligned-text {
  display: block;
  padding-bottom: 15px;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 30px;
  text-transform: uppercase;
}

.letter-spacing-extended {
  padding-left: 30px;
}

.aligned-text_center {
  padding-right: 30px;
  line-height: 1;
  text-align: center;
}

.aligned-text_right {
  text-align: end;
}

.no-letter-spacing {
  letter-spacing: 0;
}

.cover__description {
  display: flex;
  justify-content: space-between;
  padding: 113px 50px 50px 78px;
  align-items: center;
}

.cover__description-text {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.27;
  text-transform: uppercase;
  word-spacing: 18px;
}

.bet-button {
  background-color: transparent;
  padding: 12px 32px;
  border: 1px solid #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: inherit;
}

.lots {
  padding: 179px 24px 148px;
}

.lots__heading {
  padding: 0 0 27px 40px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.lots__card-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: #fff;
}

.lots__card-list-item {
  flex-grow: 1;
  width: 334px;
  min-height: 563px;
}

.card-link {
  position: relative;
  display: block;
  text-decoration: none;
  height: 100%;
  color: inherit;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
  background: no-repeat center / cover;
}

.card_type_film {
  height: 100%;
  background-image: url(../images/card-lot-01.jpg);
}

.card_type_book {
  background-image: url(../images/card-lot-02.jpg);
}

.card_type_picture {
  background-image: url(../images/card-lot-03.jpg);
}

.card__title {
  position: relative;
  z-index: 2;
  padding: 51px 40px 0;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: underline;
  text-transform: uppercase;
}

.card__text {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.lots__look-more-link {
  display: inline-block;
  padding: 30px 0 0 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*ABOUT*/
.about {
  display: grid;
  grid-template-columns: 335px 1fr;
  justify-content: space-between;
  gap: 25px;
  padding: 34px 24px;
}

.about__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 240px;
  height: 240px;
  background-color: #000;
  border-radius: 50%;
}

.about__logo-image {
  width: 148px;
  height: 114px;
}

.about__title {
  padding: 100px 0 98px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/*FOOTER*/
.footer {
  display: flex;
  justify-content: space-between;
  padding: 150px 50px 88px;
}

.footer__menu {
  padding-left: 34px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__menu-link_active {
  text-decoration: none;
}

.footer__social-list {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__social-icon {
  width: 48px;
  height: 48px;
}
