@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Dela+Gothic+One&family=DotGothic16&family=Kaisei+Decol&family=Klee+One:wght@600&family=Kosugi+Maru&family=Mochiy+Pop+One&family=Potta+One&family=Press+Start+2P&family=RocknRoll+One&family=Yusei+Magic&family=Zen+Antique&family=Zen+Kaku+Gothic+Antique&family=Zen+Kurenaido&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=DotGothic16&family=Klee+One:wght@600&family=Nabla&family=Pixelify+Sans:wght@500&family=Press+Start+2P&family=Silkscreen&family=VT323&family=Zen+Antique&family=Zen+Kurenaido&display=swap");
* {
  margin: o;
  padding: 0;
  box-sizing: border-box;
}

.icon-back {
    left: 5px;
    position: absolute;
    display: flex;
    width: 50px;
    height: 50px;
    z-index: 100;
  }

.icon-menue {
  right: 5px;
  position: absolute;
  display: flex;
  width: 44px;
  height: 44px;
}

.html {
  display: flex;
}

:root {
  --color-text: #2a2a2a;
  --color-bg: #f5f5f5;
  --color-bg-accent: #e9e9e9;
  --color-hover: rgb(106, 212, 184);
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  --slowdown-factor: 4;
}

.owl-theme .item {
  height: 35rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: undefined;
  -webkit-backdrop-filter: undefined;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
  -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  color: rgb(60, 118, 189);
  font-family: "inter";
}

.owl-carousel .item h4 {
  color: #171717;
  font-weight: 400;
  font-size: 1.4375rem;
  margin-top: 0rem;
  text-align: center;
  font-family: "DotGothic16";
}

.owl-stage-outer {
  /* padding-left: 10px; */
  /* padding-right: 10px; */
  padding: 10px;
}

body {
  background-color: rgb(174, 212, 198);
  background-image: url(images/IMG_2481.PNG);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  font-family: "DotGothic16";
}

.container {
  width: 80%;
  margin: 20px auto;
  margin-top: 40px;
  background-color: beige;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 16px 16px 7px #fffff2, 
  30px 30px 20px rgb(26, 109, 85);
}

.carousel {
  border: 2px solid #2a2a2a;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slider {
  height: 100%;
  width: 400%;
  display: flex;
  transition: all 0.3s;
}

.section {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section .img {
  width: 100%;
}

.control .arrow {
  position: absolute;
  top: 50%;
}

.arrow .left {
  left: 10px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.arrow .right {
  right: 10px;
}

.animate__animated  {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  font-size: 50px;
  text-shadow: 5px 2px 2px #fbf5f5;
}

.sketchfab-embed-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  /* width: 800px; */
  height: 700px;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: undefined;
  -webkit-backdrop-filter: undefined;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
  -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
  border-radius: 12px;
  -webkit-border-radius: 32px;
  color: rgba(255, 255, 255, 0.75);
}

iframe {
  width: 100%;
  height: 500px;
}

.container2 {
  display: grid;
  grid-template-columns: repeat(6, minmax(350px, 1fr)); /* 列宽度可根据需要调整 */
  gap: 10px; /* 列之间的间距，可根据需要调整 */
  overflow-x: auto; /* 水平滚动 */
  overflow-y: hidden;
  white-space: nowrap; /* 防止文本换行 */
  padding-top: 5rem;
}

.scrolling-content {
  display: inline-block;
  white-space: normal; /* 恢复文本换行 */
  /* 添加滚动内容，可以放置文本、图像、卡片等 */
  background-color: rgb(236, 222, 120);
  width: 100%;
  height: 33rem;
  position: relative;
  border-radius: 52px;
  animation: scroll-x var(--duration) linear infinite;
  z-index: 1002;
}

.scrolling-content {
  animation-direction: normal;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.container2:hover .marquee__group {
  animation-play-state: paused;
}

.container2 img:hover {
  background-color: var(--color-hover);
}

.photo-container {
  width: 100%;
  position: relative;
  padding: 20px;
}

.photo-container img {
  width: 100%;
  object-fit: contain;
  background-color: beige;
  border-radius: 30px;
  max-height: 320px;
  min-height: 20rem;
}

.content-text {
  width: 100%;
  position: relative;
  padding: 2rem;
  font-family: "DotGothic16";
}

.text-title {
  color: black;
  font-size: 22px;
  text-align: left;
}

.text-2 {
  color: rgb(191, 60, 20);
  font-size: 25px;
  text-transform: uppercase;
  text-align: right;
}

.item h1 {
  font-family: "Kosugi Maru";
  font-size: 30px;
}

.item h3 {
  color: rgb(10, 132, 91);
  font-family: "Kosugi Maru";
}

.text {
  color: #2a2a2a;
  font-size: 14px;
  font-family: "Kosugi Maru";
  line-height: 1.5;
}

.enlarge-image {
  cursor: pointer;
  max-width: 100%;
  height: auto;
  transition: 0.3s;
}

.enlarge-image:hover {
  opacity: 0.7;
}

.full-screen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 56, 56, 0.5);
  overflow: hidden;
  z-index: 1200;}

.full-screen-image {
  margin: 5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 80%;
  overflow: hidden;
}

.close-btn {
  color: white;
  font-size: 50px;
  position: absolute;
  top: 10px;
  left: 15px;
  cursor: pointer;
  z-index: 200;
}

.music {
  max-width: 120px;
  max-height: 50px;
  border-radius: 50px;
  background: #f9f9f9;
  box-shadow: -20px -20px 60px rgb(197, 240, 242), 20px 20px 40px rgb(53, 162, 146);
  padding: 12px;
  margin: 20px;
  padding-left: 20px;
}

#menu2 {
  font-family: "DotGothic16";
  background: url(images/IMG_bg.PNG);
  background-size: 100% 100%;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
}
#menu2.open {
  opacity: 1;
  visibility: visible;
}
#menu2.open li:nth-child(1) {
  animation-delay: 0.1s;
}
#menu2.open li:nth-child(2) {
  animation-delay: 0.2s;
}
#menu2.open li:nth-child(3) {
  animation-delay: 0.3s;
}
#menu2.open li:nth-child(4) {
  animation-delay: 0.4s;
}
#menu2.open li:nth-child(5) {
  animation-delay: 0.5s;
}
#menu2.open li:nth-child(6) {
  animation-delay: 0.6s;
}
#menu2.open li:nth-child(7) {
  animation-delay: 0.7s;
}
#menu2.open li:nth-child(8) {
  animation-delay: 0.8s;
}
#menu2.open li:nth-child(9) {
  animation-delay: 0.9s;
}
#menu2.open li:nth-child(10) {
  animation-delay: 1s;
}
#menu2.open li {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
#menu2 ul:hover a {
  opacity: 0.5;
}
#menu2 ul a {
  color: rgb(10, 10, 81);
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease-in-out;
}
#menu2 ul a:hover {
  opacity: 1;
  color: rgb(39, 191, 199);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ffffff;
}
#menu2 .main-nav {
  position: relative;
  top: 45%;
  transform: translateY(-50%);
}
#menu2 .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu2 .main-nav a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
#menu2 .main-nav a:first {
  padding-top: 0;
}
#menu2 .menu-footer {
  padding: 2rem;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
#menu2 .menu-footer ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu2 .menu-footer ul li {
  display: inline;
  margin: 0 1rem;
}
#menu2 .menu-footer a {
  color: rgb(10, 10, 81);
  text-decoration: none;
  text-transform: uppercase;
}

.icon-menue {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 50px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  width: 50px;
  z-index: 1110;
}
.icon-menue img {
  width: 100%;
}

#menu2 {
  font-family: "DotGothic16";
  background: url(images/IMG_bg.PNG);
  background-size: 100% 100%;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
}
#menu2.open {
  opacity: 1;
  visibility: visible;
}
#menu2.open li:nth-child(1) {
  animation-delay: 0.1s;
}
#menu2.open li:nth-child(2) {
  animation-delay: 0.2s;
}
#menu2.open li:nth-child(3) {
  animation-delay: 0.3s;
}
#menu2.open li:nth-child(4) {
  animation-delay: 0.4s;
}
#menu2.open li:nth-child(5) {
  animation-delay: 0.5s;
}
#menu2.open li:nth-child(6) {
  animation-delay: 0.6s;
}
#menu2.open li:nth-child(7) {
  animation-delay: 0.7s;
}
#menu2.open li:nth-child(8) {
  animation-delay: 0.8s;
}
#menu2.open li:nth-child(9) {
  animation-delay: 0.9s;
}
#menu2.open li:nth-child(10) {
  animation-delay: 1s;
}
#menu2.open li {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
#menu2 ul:hover a {
  opacity: 0.5;
}
#menu2 ul a {
  color: rgb(10, 10, 81);
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease-in-out;
}
#menu2 ul a:hover {
  opacity: 1;
  color: rgb(39, 191, 199);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ffffff;
}
#menu2 .main-nav {
  position: relative;
  top: 45%;
  transform: translateY(-50%);
}
#menu2 .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu2 .main-nav a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
#menu2 .main-nav a:first {
  padding-top: 0;
}
#menu2 .menu-footer {
  padding: 2rem;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
#menu2 .menu-footer ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu2 .menu-footer ul li {
  display: inline;
  margin: 0 1rem;
}
#menu2 .menu-footer a {
  color: rgb(10, 10, 81);
  text-decoration: none;
  text-transform: uppercase;
}

.icon-menue {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 50px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  width: 50px;
  z-index: 1102;
  margin-right: 7px;
}
.icon-menue img {
  width: 100%;
}


.music {
  max-width: 120px;
  max-height: 50px;
  border-radius: 50px;
  background: #f9f9f9;
  box-shadow: -20px -20px 60px rgb(197, 240, 242), 20px 20px 40px rgb(53, 162, 146);
  padding: 12px;
  margin: 20px;
  position: fixed;
	bottom: 30px;
	z-index: 1000;
}
.music:hover {
  color: #ffffff;
  cursor: pointer;
  background: rgb(131, 218, 205);
  box-shadow: 20px 20px 60px rgb(197, 240, 242), -20px -20px 60px rgb(53, 162, 146);
}

/*# sourceMappingURL=unit6-usa.css.map */
