.marketListBanner {
  padding: 60px 0;
  color: #fff;
  position: relative;
}

.marketListBanner .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.marketListBanner .container {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.marketListBanner .container h1 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

.marketListBanner .container .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.marketListBanner .container h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 1px;
}

.marketListBanner .container .snippet {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.marketsLink {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  width: fit-content;
  height: 48px;

  padding: 0 32px;

  color: #fff;
  background-color: #162636;
  border: 2px solid #fff;

  transition: 0.3s color, 0.3s background-color, 0.3s border-color;
}

.marketsLink:hover {
  background-color: #fff;
  color: #162636;
  border-color: #162636;
}

@media (max-width: 1499px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .marketListBanner .container h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .marketListBanner .container h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .marketListBanner .container .snippet {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
}
