/* CSS Document */
body {
  background-color: #f2bf17;
  margin: 0;
  padding: 0;
}
.summerFest {
  overflow: hidden;
  height: 98vh;
  width: 100%;
}
.summerFest__article {
  top: 10%;
  position: relative;
  width: 100%;
  text-align: center;
  @media (max-width: 767px) {
    top: 10%;
  }
}

.summerFest__article::before {
  content: "";
  background-image: url(../images/Asset_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 453px;
  height: 413px;
  right: calc(100% - 15%);
  top: 20px;
  @media (max-width: 767px) {
    display: none;
  }
}
.summerFest__article::after {
  content: "";
  background-image: url(../images/Asset_3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 453px;
  height: 413px;
  left: calc(100% - 20%);
  top: 20px;
  @media (max-width: 767px) {
    display: none;
  }
}

.summerFest__logo {
  display: flex;
  width: 100%;
  max-width: 453px;
  margin-top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  @media (max-width: 767px) {
    max-width: 80%;
  }
}

.summerFest__blockImage {
  display: none;
  width: 100%;
  height: 193px;
  overflow: hidden;
  position: fixed;
  bottom: -2px;
  background-image: url(../images/Asset6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  @media (max-width: 767px) {
    display: block;
  }
}
.summerFest__tiker {
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 50px;
}

.marquee-content {
  display: inline-block;

  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #fc6333;
  font-size: clamp(50px, 8vw, 150px);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}