/* Main CSS */
.main-full-template {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

main {
  flex: 1;
}

.main-slogan {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* background: url(../images/main_bg.jpg) no-repeat center/cover; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 44px;
  z-index: 100;
}

.main-slogan h2 {
  max-width: 865px;
  width: 90%;
  color: var(--white);
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  /* 52.8px */
  text-shadow: 3px 3px 2px rgba(0, 0, 0, .3);
}

.main-slogan h2:after,
.main-slogan h2:before {
  content: '"';
}

.main-slogan p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  /* 35.2px */
  text-shadow: 3px 3px 2px rgba(0, 0, 0, .3);
}

.main-slogan p:after,
.main-slogan p:before {
  content: '"';
}

.main-slogan .sideshow {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}

.slideshow img {
  width: 100%;
  height: calc(100vh - 40px);
  object-fit: cover;
}