/* -- Section 1 --*/
.c-block__sumary {
  position: relative;
  width: 100%;
  height: calc(100vh - 12.7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.c-block__sumary--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.c-block__sumary--head {
  position: absolute;
  z-index: 1;
  margin: 4rem auto 0;
  max-width: 39.6rem;
  width: 100%;
  text-align: center;
  top: 6rem;
}
@media (max-width: 1600px) {
  .c-block__sumary--head {
    top: 0;    
  }
}

.c-block__sumary--head-logo {
  max-width: 60%;
}

.c-block__sumary--head-title {
  font-family: "Noto Serif", serif;
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 3.6rem;
  margin-top: 3.3rem;
  filter: drop-shadow(0 0 0.8rem black);
}

.c-block__sumary--head-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 3rem;
  top: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
}

.c-block__sumary--anchor {
  width: 14rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 5rem;
  z-index: 1;
}
@media (max-width: 1600px) {
  .c-block__sumary--anchor {
    bottom: 1.5rem;
  }
}

.c-block__sumary--anchor svg {
  width: 3rem;
  height: 3rem;
  border: 0.2rem solid #fff;
  border-radius: 100%;
  padding: 0.6rem;
  animation: arrowBounce 2s infinite;
}

.c-block__sumary--anchor-text {
  color: white;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 0.8rem black);
}
