@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Open Sans", 微軟正黑體, "Microsoft JhengHei",  Arial, sans-serif;
  font-weight: 300;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
a {
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
.main-section {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-self: flex-start;
}
.main-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 1px solid #fff;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.bg-area {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: rgb(0, 0, 0);
}
.bg::after {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.589);
}

.link-text a {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 40px;
  letter-spacing: 10px;
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.link-text a:hover {
  color: #0b4a72;
}

.link-text a::before, .link-text a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 60px;
  top: 0;
  background: #fff;
  z-index: -1;
}

.link-text a::before {
  left: 0;
}

.link-text a:hover::before {
  background: #fff;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.link-text a::after {
  right: 0;
  background: #fff;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.link-text a:hover::after {
  background: transparent;
  width: 100%;
  transition: 0s;
}

.en-txt {
  display: block;
}

.tw-txt {
  display: none;
}

.link-text a:hover .en-txt {
  display: none;
}

.link-text a:hover .tw-txt {
  display: block;
}


.bg-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-container p {
  color: #fff;
  font-size: 16px;
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.5em;
}

@keyframes anima {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 768px) {
  .main-container {
    padding: 0;
    border: 0;
  }
}

/*Cursor*/
.cursor,
.cursor2,
.cursor3{
	position: fixed;
	border-radius: 50%;	
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	left: -100px;
	top: 50%;
	mix-blend-mode: difference;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}
.cursor{
	background-color: #fff;
	height: 0;
	width: 0;
	z-index: 99999;
}
.cursor2,.cursor3{
	height: 66px;
	width: 66px;
	z-index:99998;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
	-webkit-transform:scale(1.5) translateX(-25%) translateY(-25%);
	transform:scale(1.5) translateX(-25%) translateY(-25%);
	border:none
}
.cursor2{
	border: 1px solid #fff;
	box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
}
.cursor2.hover{
	background: rgba(255,255,255,1);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px){
	.cursor,.cursor2,.cursor3{
		display: none
	}
}