#selectFile {
  display: none
}

* {
  font-family: 'Rasa', 'Noto Sans TC', serif;
}

body {
  padding: 0;
  margin: 0 auto;
  max-width: 1920px;
  font-weight: 400;
  font-size: 18px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 0 2em;
}

.logo {
  width: 20%;
}

.logo img {
  display: block;
}
.modal-window {
  position: fixed;
  background-color: rgba(1, 1, 1, 0.15);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: x-large;
}

.modal-window:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-window>div {
  width: 250px;
  position: relative;
  margin: 10% auto;
  padding: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-close {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  top: 20px;
  margin-left: 47%;
  margin-right: 45%;
}

.modal-close::before {
  background-color: #3b89a2;
  content: '';
  position: absolute;
  height: 3px;
  left: 2px;
  width: 26px;
  -webkit-transform: rotate(45deg);
}

.modal-close::after {
  background-color: #3b89a2;
  content: '';
  position: absolute;
  height: 3px;
  left: 2px;
  width: 26px;
  -webkit-transform: rotate(135deg);
  z-index: 2;
}
/* 選單列 */
#menu {
  display: flex;
  justify-content: flex-end;
  width: 80%;
  align-items: flex-end;
}

#menu div .languages, #menu div .dropdown-content a {
  text-decoration: none;
  padding: .2em 2em;
  display: block;
  color: black;
}

#menu .abouthref a, #menu .greenhousehref a, #menu .contacthref a {
  text-decoration: none;
  margin: .2em 2em;
  display: block;
  color: black;  
}

#menu .abouthref a:hover, #menu .greenhousehref a:hover, #menu .contacthref a:hover {
  border-top: 5px solid #77a05a;
  padding-top: .5em;  
}

#menu div .languages {
  border: 1px solid black;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  margin-left: 2em;
}

#menu > div {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 2;
  background: #f7f7f7;
  border-radius: 15px;
  width: 10.5em;
  text-align: center;
  margin-left: 2em;
}

#menu div:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover:first-child {
  background: #d5d5d5;
  border-radius: 15px 15px 0 0;
}

.dropdown-content a:hover:last-child {
  background: #d5d5d5;
  border-radius: 0 0 15px 15px;
}

.bg1 {
  background-image: url('../img/bg1.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  margin-top: 2em;
  dispaly: none;
  animation: 2s ease-out 0s 1 slideInFromLeft;
}

@keyframes slideInFromLeft {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
   clip-path: inset(0 0 0 0);
  }
}

.aboutDiv {
  width: 50%;
  padding-left: 13em;
  padding-right: 6em;
}

.aboutDiv .about {
  margin-top: 3.5em;
  letter-spacing: 1px;
}

.aboutDiv .about .hrline {
  border-bottom: 5px solid;
  width: 100px;
  margin-top: 2em;
}

.aboutDiv h1 {
  font-size: 70px;
  color: #91b7c4;
  letter-spacing: 2px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}

.aboutDiv .aboutTyphoon {
  letter-spacing: 1px;
}

.aboutDiv .aboutTyphoon img {
  margin-top: 1em;
}

.imageDiv {
  width: 50%;
}

.imageDiv img {
  width: 100%;
  display: block;
}

.bg2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  position: relative;
}

.bg2 div {
  position: absolute;
  top: -120px;
  left: 0;
}

.bg2 > div > img {
  width: 60%;
  display: block;
}

.bg2 img {
  margin-bottom: 1em;
  width: 10px;
  height: auto;
}

.bg3{
  width: 100%;
  height: 500px;
  border-radius: 50%/ 100% 100% 0 0;
  background: #ebebeb;
}

[data-aos="example-anim1"] {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
[data-aos="example-anim1"].aos-animate {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

body[data-aos-duration='7000'] [data-aos],
[data-aos][data-aos][data-aos-duration='7000'] {
  transition-duration: 7000ms;
}

.bg3Background {
  background: #ebebeb;
  margin-top: 9.5em;
  padding-bottom: 4em;
  height: 700px;
}

.bg3 .title {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 14em;
}

.bg3 .title img {
  display: block;
}

.bg3Background .easyDiv {
  display: flex;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.bg3Background .easyDiv .infoDiv {
  position: relative;
  width: 30%;
  height: auto;
}

.bg3Background .easyDiv .info {
  width: 90%;
  height: 400px;
  background: #98c28b;
  color: white;
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: 99999999;
  padding: 3em 2em;
  text-align: center;
}

.bg3Background .easyDiv .info h2 {
  margin: 0;
  font-weight: 500;
  border-bottom: 3px solid white;
  width: fit-content;
}

.bg3Background .easyDiv .info p {
  text-align: left;
}

.bg3Background .easyDiv .info button {
  border: 2px solid white;
  background: none;
  box-shadow: none;
  padding: 1.5em 0;
  margin-top: 10em;
  position: relative;
}

.bg3Background .easyDiv .info button:hover:before {
  content: "";
  position: absolute;
  background-image: url('../img/rolate.png');
  height: 50px;
  width: 50px;
  top: -25px;
  right: -25px;
}

.bg3Background .easyDiv .info button a {
  color: white;
  text-decoration: none;
  padding: 1em 2em;
  font-size: 27px;
}

.bg3Background .easyDiv .images {
  width: 70%;
}

.bg4Background {
  background: #ebebeb;
  margin-top: 760px;
  padding-top: 20em;
  padding-bottom: 4em;
}

.bg4Background .easyDiv {
  display: flex;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.bg4Background .easyDiv .infoDiv {
  position: relative;
  width: 30%;
  height: auto;
}

.bg4Background .easyDiv .info {
  width: 90%;
  height: 400px;
  background: #98c28b;
  color: white;
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 99999999;
  padding: 3em 2em;
  text-align: center;
}

.bg4Background .easyDiv .info h2 {
  margin: 0;
  font-weight: 500;
  border-bottom: 3px solid white;
  width: fit-content;
}

.bg4Background .easyDiv .info p {
  text-align: left;
}

.bg4Background .easyDiv .info button {
  border: 2px solid white;
  background: none;
  box-shadow: none;
  padding: 1.5em 0;
  margin-top: 8em;
  position: relative;
}

.bg4Background .easyDiv .info button:hover:before {
  content: "";
  position: absolute;
  background-image: url('../img/rolate.png');
  height: 50px;
  width: 50px;
  top: -25px;
  right: -25px;
}

.bg4Background .easyDiv .info button a {
  color: white;
  text-decoration: none;
  padding: 1em 2em;
  font-size: 27px;
}

.bg4Background .easyDiv .images {
  width: 70%;
}

.bg5Background {
  background: #ebebeb;
  padding-top: 7em;
  padding-bottom: 4em;
}

.bg5Background .easyDiv {
  display: flex;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.bg5Background .easyDiv .infoDiv {
  position: relative;
  width: 30%;
  height: auto;
}

.bg5Background .easyDiv .info {
  width: 90%;
  height: 400px;
  background: #98c28b;
  color: white;
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: 99999999;
  padding: 3em 2em;
  text-align: center;
}

.bg5Background .easyDiv .info h2 {
  margin: 0;
  font-weight: 500;
  border-bottom: 3px solid white;
  width: fit-content;
}

.bg5Background .easyDiv .info p {
  text-align: left;
}

.bg5Background .easyDiv .info button {
  border: 2px solid white;
  background: none;
  box-shadow: none;
  padding: 1.5em 0;
  margin-top: 8em;
  position: relative;
}

.bg5Background .easyDiv .info button:hover:before {
  content: "";
  position: absolute;
  background-image: url('../img/rolate.png');
  height: 50px;
  width: 50px;
  top: -25px;
  right: -25px;
}

.bg5Background .easyDiv .info button a {
  color: white;
  text-decoration: none;
  padding: 1em 2em;
  font-size: 27px;
}

.bg5Background .easyDiv .images {
  width: 70%;
}

.bg6Background {
  background: #ebebeb;
  padding-top: 7em;
  height: 150px;
  margin-bottom: 12em;
}

.bg6Background .easyDiv {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
}

.bg6Background .easyDiv div {
  width: calc(100%/3);
}

.bg6Background .easyDiv div:nth-child(2) {
  margin:0 2em;
}

.bg6Background .easyDiv div img {
  width: 100%;
  display: block;
}

.bg7Background {
  width: 60%;
  margin: 0 auto;
  margin-top: 5em;
  margin-bottom: 5em;
}

.bg7Background p {
  letter-spacing: 1px;
  text-align: justify;
}


footer {
  background: #3b89a2;
  padding: 4em;
  text-align: center;
  position: relative;
}

footer h4 {
  font-size: 70px;
  margin: 0 auto;
  letter-spacing: 2px;
  color: white;
}

footer .connectInfo, footer .socialIcon {
  display: flex;
  justify-content: center;
}

footer .connectInfo > div {
  width: 30%;
  margin: 2em 0;
  color: white;
}

footer .socialIcon > a {
  min-width: 2em;
  color: white;
  margin-top: 4em;
}

footer .socialIcon > a i {
  font-size: 1.5em;
}

footer .vagetableImage {
  position: absolute;
  bottom: 0;
  right: 0;
}

footer .vagetableImage img {
  width: 70%;
  display: block;
}

.upIcon {
  max-width: 50px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}

.copyright {
  margin-top: 1em;
}

.copyright a {
  color: white;
  text-decoration: none;
}

/* 手機樣式 */
#rwd {
  display: none;
}

.rwdbg01 {
  position: relative;
}

.rwdbg02 {
  width: 80%;
  margin: 0 auto;
  letter-spacing: 1px;
  margin-bottom: 2em;
}

.rwdbg02 p {
  margin: 2em 0;
  
}

.rwdbg02 .rwdTitle {
  font-weight: 900;
  font-size: 1.2rem;
}

.rwdbg02 .rwdhrline01 {
  border: 5px solid #5f9f3d;
  width: 5px;
  margin-bottom: 1em;
}

.rwdbg02 .rwdhrline02 {
  border: 5px solid #5f9f3d;
  width: 40px;
  float: right;
}

.rwdbg02 .rwdinfo button {
  border: none;
  background: #5ea03e;
  color: white;
  border-radius: 20px;
  margin: 0 auto;
  display: block; 
  padding: .5em;
  box-shadow: 2px 2px 5px #999999;
  letter-spacing: 2px; 
  
}

.rwdbg02 .rwdinfo a {
  color: white;
  text-decoration: none;
}

.rwdbg03{
  width: 100vw;
  height: 300px;
  border-radius: 50%/ 100% 100% 0 0;
  background: #ebebeb;
  position: relative;
}

.rwdbg03 .rwdGreenHouseTitle {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
}

.rwdbg03 .rwdGreenHouseTitle img {
  width: 100%;
}

.rwdbg04 {
  background: #ebebeb;
  padding-bottom: 6em;
}

.rwdbg04 .rwdbannerimages, .rwdbg04 .rwdinfo {
  width: 80%;
  margin: 0 auto;
}

.rwdbg04 .rwdbannerimages img {
  border-radius: 20px;
}

.rwdbg04 p {
  margin: 2em 0;
}

.rwdbg04 .rwdTitle {
  margin-top: 2em;
  font-weight: 900;
  font-size: 1.2rem;
}

.rwdbg04 .rwdinfo button {
  border: none;
  background: #5ea03e;
  border-radius: 20px;
  margin: 0 auto;
  display: block; 
  padding: .5em;
  box-shadow: 2px 2px 5px #999999;
}

.rwdbg04 .rwdinfo button a {
  color: white;
  text-decoration: none;
  padding: 1em 2.5em;
  letter-spacing: 1px; 
}

.rwdbg5 {
  background: repeating-linear-gradient(0deg,#fff, #fff 50%, #ebebeb 50%, #ebebeb 100%);
}

.rwdbg5 .rwdimages {
  width: 80%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.rwdbg5 .rwdimages div {
  width: calc(100%/3);
}

.rwdbg5 .rwdimages div:nth-child(2) {
  margin:0 2em;
}

.rwdbg5 .rwdimages div img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.rwdbg6 {
  width: 80%;
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

.rwdbg7 {
  background: #3b89a1;
  padding-top: 4em;
  padding-bottom: 2em;
}

.rwdbg7 .rwdbg7Div {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.rwdbg7 .rwdbg7Div p {
  color: white;
  margin: 1em 2em;
}

.rwdbg7 .rwdbg7Div span {
  min-width: 6em;
  display: inline-block;
}

.rwdbg7 .rwdbgSocialDiv {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1em;
  margin-bottom: 1em;
}

.rwdbg7 .jcitLink {
  width: 80%;
  margin: 0 auto;
}

.rwdbg7 .jcitLink a {
  color: white;
  text-decoration: none;
  margin-left: 0.5em;
}

.rwdbg7 .rwdbgSocialDiv div {
  width: 50%;
}

.rwdbg7 .rwdbgSocialDiv div img {
  width: 100%;
  display: block;
}

.rwdSocialIcon a {
  font-size: 2em;
  color: white;
}

.rwdSocialIcon a i {
  vertical-align: bottom;
  margin: 0 5px;
}

/* 語系切換 */
.switch {
  position: absolute;
  left: 40px;
  top: 70px;
}
.switch input {
  position: absolute;
  top: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.switch input:checked {
  z-index: 1;
}
.switch input:checked + label {
  opacity: 1;
  cursor: default;
}
.switch input:not(:checked) + label:hover {
  opacity: 0.5;
}
.switch label {
  color: black;
  opacity: 0.33;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.switch .toggle-outside {
  height: 100%;
  border-radius: 2rem;
  padding: 0.25rem;
  overflow: hidden;
  transition: 0.25s ease all;
}
.switch .toggle-inside {
  border-radius: 5rem;
  background: #fff;
  box-shadow: -2px -2px 5px white;
  position: absolute;
  transition: 0.25s ease all;
}
.switch--horizontal {
  width: auto;
  height: 2rem;
  margin: 0 auto;
  font-size: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.switch--horizontal input {
  height: 2rem;
  width: 6rem;
  left: 6rem;
  margin: 0;
}
.switch--horizontal label {
  font-size: 1rem;
  line-height: 2rem;
  display: inline-block;
  width: 6rem;
  height: 100%;
  margin: 0;
  text-align: center;
}
.switch--horizontal label:last-of-type {
  margin-left: 5rem;
}
.switch--horizontal .toggle-outside {
  background: black;
  position: absolute;
  width: 4.7rem;
  left: 6rem;
}
.switch--horizontal .toggle-inside {
  height: 1.5rem;
  width: 1.5rem;
}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
  left: 0.5rem;
  top: 0.5rem;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
  left: 3.25rem;
}

@media screen and (max-width: 1680px) {
  .aboutDiv {
    padding-left: 12em;
    padding-right: 4em;
  }
  .aboutDiv .about {
    margin-top: 1em;
  }
  .bg4Background {
    margin-top: 760px;
    padding-top: 14em;
  }
}

@media screen and (max-width: 1536px) {
  .aboutDiv {
    padding-left: 11em;
    padding-right: 1em;
  }
  .aboutDiv h1 {
    font-size: 60px;
  }
  .bg4Background {
    margin-top: 680px;
  }
  .bg7Background {
    margin-top: 3em;
  }
}

@media screen and (max-width: 1440px) {
  body {
    font-size: 16px;
  }
  .aboutDiv {
    padding-left: 11em;
    padding-right: 1em;
  }
  .aboutDiv .about {
    margin-top: 1.5em;
  }
  .bg4Background {
    margin-top: 640px;
  }
}

@media screen and (max-width: 1366px) {
  .aboutDiv {
    padding-left: 10em;
  }
  .aboutDiv .about {
    margin-top: .5em;
  }
  .bg4Background {
    margin-top: 600px;
  }
  .bg7Background {
    margin-top: 2em;
  }
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 14px;
  }
  .aboutDiv {
    padding-left: 12em;
  }
  .aboutDiv .about {
    margin-top: 1.5em;
  }
  .aboutDiv h1 {
    font-size: 52px;
  }
  .bg4Background {
    margin-top: 560px;
  }
  .bg2 > div > img {
    width: 50% !important;
  }
}

@media screen and (max-width: 1080px) {
  body {
    font-size: 12px;
  }
  .aboutDiv h1 {
    font-size: 40px;
  }
  .aboutDiv .about {
    margin-top: 2em;
  }
  .bg3 .easyDiv .info, .bg4Background .easyDiv .info, .bg5Background .easyDiv .info {
    height: 300px;
  }
  .bg3 .easyDiv .info button a, .bg4Background .easyDiv .info button a, .bg5Background .easyDiv .info button a {
    font-size: 24px;
    padding: 1em 1.5em;
  }
  .bg3 .easyDiv .info button, .bg4Background .easyDiv .info button, .bg5Background .easyDiv .info button {
    padding: 1em 0;
  }
  .bg3Background .easyDiv .info button, .bg4Background .easyDiv .info button, .bg5Background .easyDiv .info button {
    margin-top: 4em;
  }
  .bg4Background {
    margin-top: 420px;
  }
  .bg6Background .easyDiv {
    width: 90%;
  }
  .bg7Background {
    margin-top: 0;
  }
  footer .vagetableImage {
    width: 400px;
  }
  footer .vagetableImage img {
    width: 70% !important;
  }
}

@media screen and (max-width: 960px) {
  .aboutDiv {
    padding-left: 10em;
  }
  .aboutDiv .about {
    margin-top: 0em;
  }
  .aboutDiv .about .hrline {
    margin-top: 1em;
  }
  .aboutDiv h1 {
    font-size: 36px;
  }
  .bg3 {
    height: 400px;
  }
  .bg3 .easyDiv .info button {
    margin-top: 6em;
  }
  .bg3 .easyDiv .info button a, .bg4Background .easyDiv .info button a, .bg5Background .easyDiv .info button a {
    font-size: 21px;
  }
  .bg6Background {
    height: 400px;
    margin-bottom: 34em;
  }
  .bg6Background .easyDiv {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .bg2 div {
    top: -80px !important;
  }
  .bg2 > div > img {
    width: 40% !important;
  }
}

@media screen and (max-width: 760px) {
  #header, .content, #contact {
    display: none;
  }
  #rwd {
    display: block;
  }
  .rwdbg01 {
    width: 100vw;
  }
  .rwdbg01 img {
    width: 100%;
    display: block;
  }
  .slick-dots li button {
    border: 1px solid #3c89a2 !important;
    border-radius: 50% !important;
  }
  .slick-dots li button:before {
    font-size: 15px !important;
    line-height: 23px !important;
  }
}

@media screen and (max-width: 420px) {
  .switch {
    left: 0px;
    top: 20px;
  }
  .rwdbg03 {
    height: 180px !important;
  }
  .rwdbg7 .rwdbg7Div span {
    min-width: 5em !important;
  }
  .slick-prev {
    left: 10px !important;
  }
  .slick-next {
    right: 10px !important;
  }
  .switch--horizontal {
    height: 1.5rem !important;
  }
  .switch--horizontal .toggle-outside {
    width: 3.5rem !important;
    left: 5rem !important;
  }
  .switch--horizontal .toggle-inside {
    height: 1rem !important;
    width: 1rem !important;
  }
  .switch--horizontal label:last-of-type {
    margin-left: 2rem !important;
  }
  .switch--horizontal label {
    line-height: 1.5rem !important;
  }
  .switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
    left: 2.5rem !important;
  }
  .upIcon {
    max-width: 30px !important;
  }    
}

@media screen and (max-width: 375px) {
  .rwdbg7 .rwdbg7Div p {
    margin: 1em 0 !important;
  }
  .rwdbg5 .rwdimages div:nth-child(2) {
    margin: 0 1em !important;
  }
}







