@charset "UTF-8";
* {
  font-family: 'Noto Sans TC', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #362E2B;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: block;
  width: 100%;
}

.navbar a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar {
    display: none;
  }
}

.navbar .logo {
  display: inline-block;
  font-weight: 900;
}

.navbar ul {
  height: 100%;
  width: 900px;
  margin: auto;
  padding: 0;
  border-bottom: 2px solid #245C81;
}

.navbar ul #logo2 {
  height: 40px;
  margin-bottom: 20px;
}

.navbar ul li {
  display: inline;
  cursor: pointer;
}

.navbar ul li a {
  text-decoration: none;
  color: #245C81;
  padding: 30px 20px 0px 20px;
  display: inline-block;
  -webkit-transition: .5s;
  transition: .5s;
  font-weight: 900;
}

.navbar ul li a:hover {
  text-decoration: none;
  color: #666;
}

#scene {
  height: 100vh;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#scene .layer {
  width: 100%;
  height: 100%;
  text-align: center;
}

#scene .layer #logo {
  margin-top: 40vh;
}

@media (max-width: 991px) {
  #scene .layer #logo {
    width: 55%;
  }
}

#scene .layer .background {
  position: absolute;
  width: 150%;
  left: -100px;
  height: 120vh;
  top: -30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#67bcd3), to(#fcdcc7));
  background: linear-gradient(0deg, #67bcd3, #fcdcc7);
}

#scene .wave {
  margin: 0;
  background-position: center bottom;
  background-size: auto 100%;
  height: 12vw;
  width: 300%;
  left: -200px;
  height: 20vh;
  position: absolute;
}

#scene .trash {
  position: absolute;
  bottom: 10px;
  width: 12%;
  -webkit-animation: swing 3s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation: swing 3s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (max-width: 991px) {
  #scene .trash {
    width: 20%;
  }
}

#scene .trash-1-1 {
  left: 20%;
  bottom: 30px;
}

#scene .trash-1-2 {
  right: 10%;
  bottom: 30px;
}

#scene .trash-2-1 {
  left: 30%;
  bottom: 70px;
}

@media (max-width: 991px) {
  #scene .trash-2-1 {
    bottom: 100px;
  }
}

#scene .trash-2-2 {
  right: 30%;
  bottom: 70px;
}

@media (max-width: 991px) {
  #scene .trash-2-2 {
    bottom: 100px;
  }
}

#scene .trash-3-1 {
  left: 5%;
  bottom: 130px;
}

@media (max-width: 991px) {
  #scene .trash-3-1 {
    bottom: 160px;
  }
}

#scene .trash-3-2 {
  right: 50%;
  bottom: 130px;
}

@media (max-width: 991px) {
  #scene .trash-3-2 {
    bottom: 160px;
  }
}

#scene .trash-3-3 {
  right: 10%;
  bottom: 140px;
}

@media (max-width: 991px) {
  #scene .trash-3-3 {
    bottom: 160px;
  }
}

#scene .trash-4-1 {
  left: 20%;
  bottom: 160px;
}

@media (max-width: 991px) {
  #scene .trash-4-1 {
    bottom: 200px;
  }
}

#scene .trash-4-2 {
  right: 5%;
  bottom: 160px;
}

@media (max-width: 991px) {
  #scene .trash-4-2 {
    bottom: 200px;
  }
}

#scene .wave1 {
  background-image: url("../images/sea/wave-1.png");
  bottom: -72px;
  -webkit-animation: wave 4s 0.1s infinite linear;
          animation: wave 4s 0.1s infinite linear;
  width: 300%;
  height: 20vh;
}

#scene .wave2 {
  background-image: url("../images/sea/wave-2.png");
  bottom: 0px;
  -webkit-animation: wave 5s 0.1s infinite linear;
          animation: wave 5s 0.1s infinite linear;
}

#scene .wave3 {
  background-image: url("../images/sea/wave-3.png");
  bottom: 72px;
  -webkit-animation: wave 6s 0.1s infinite linear;
          animation: wave 6s 0.1s infinite linear;
}

#scene .wave4 {
  background-image: url("../images/sea/wave-4.png");
  bottom: 108px;
  -webkit-animation: wave 7s 0.1s infinite linear;
          animation: wave 7s 0.1s infinite linear;
}

#scene .wave5 {
  background-image: url("../images/sea/wave-5.png");
  bottom: 144px;
  -webkit-animation: wave 8s 0.1s infinite linear;
          animation: wave 8s 0.1s infinite linear;
}

#scene .cloud {
  width: 100%;
  position: absolute;
  left: 0;
  top: 30%;
}

.undersea {
  background: -webkit-gradient(linear, left bottom, left top, from(#245c81), to(#7fddef));
  background: linear-gradient(0deg, #245c81, #7fddef);
  overflow-x: hidden;
  position: relative;
}

.undersea #groupOfFish {
  position: absolute;
  width: 20%;
  -webkit-animation: straight 25s infinite linear;
          animation: straight 25s infinite linear;
  margin-top: 5%;
}

.undersea #trench {
  width: 100vw;
}

.undersea #target {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 6%;
  cursor: pointer;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-animation: flash 2s infinite alternate;
          animation: flash 2s infinite alternate;
}

@media (max-width: 991px) {
  .undersea #target {
    width: 10%;
  }
}

.undersea #target:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.undersea #bubble1 {
  position: absolute;
  -webkit-animation: bubble 30s infinite linear;
          animation: bubble 30s infinite linear;
  width: 7%;
  left: 50%;
  pointer-events: none;
}

.undersea #bubble2 {
  position: absolute;
  -webkit-animation: bubble 30s infinite linear;
          animation: bubble 30s infinite linear;
  width: 7%;
  left: 10%;
  pointer-events: none;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.undersea #jellyfish1 {
  position: absolute;
  width: 7%;
  right: 3%;
  -webkit-animation: bubble 20s infinite linear;
          animation: bubble 20s infinite linear;
  -webkit-animation-delay: -15s;
          animation-delay: -15s;
}

.undersea #jellyfish2 {
  position: absolute;
  width: 7%;
  right: 8%;
  -webkit-animation: bubble 25s infinite linear;
          animation: bubble 25s infinite linear;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

@-webkit-keyframes flash {
  0% {
    -webkit-filter: drop-shadow(0px 0px 10px white);
            filter: drop-shadow(0px 0px 10px white);
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  100% {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0));
            filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0));
    -webkit-transform: scale(2) rotate(45deg);
            transform: scale(2) rotate(45deg);
  }
}

@keyframes flash {
  0% {
    -webkit-filter: drop-shadow(0px 0px 10px white);
            filter: drop-shadow(0px 0px 10px white);
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  100% {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0));
            filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0));
    -webkit-transform: scale(2) rotate(45deg);
            transform: scale(2) rotate(45deg);
  }
}

.swal2-popup {
  background-color: rgba(34, 34, 34, 0.9);
  border: solid 5px #333;
  -webkit-box-shadow: 0px 0px 5px #222222;
          box-shadow: 0px 0px 5px #222222;
}

.swal2-title {
  color: white;
}

.swal2-content {
  color: #f7f7f7;
}

.swal2-confirm {
  background-color: #348EB8 !important;
}

/*首頁動畫*/
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
            transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
            transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
            transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
            transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
  }
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@-webkit-keyframes straight {
  0% {
    right: -0%;
  }
  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@keyframes straight {
  0% {
    right: -0%;
  }
  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@-webkit-keyframes bubble {
  0% {
    opacity: 0;
    bottom: 0;
  }
  20% {
    opacity: .5;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: 100%;
  }
}

@keyframes bubble {
  0% {
    opacity: 0;
    bottom: 0;
  }
  20% {
    opacity: .5;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: 100%;
  }
}

.coolsvg {
  width: 100%;
  height: 300vh;
  background-color: #000;
}

.members {
  width: 100%;
  height: 100vh;
  color: white;
  background-color: #000;
  border: solid white 2px;
}

.wavewave {
  width: 100%;
  height: 20vh;
  color: white;
  background-color: #000;
  border: solid white 2px;
}

.container-fluid {
  background-color: #194f73;
}

.crisis {
  margin-top: 50px;
  padding-bottom: 150px;
}

.crisis .col-lg-4 {
  width: clac(100%/3);
  height: 0;
  padding-bottom: calc(100%/3);
  position: relative;
}

@media (max-width: 991px) {
  .crisis .col-lg-4 {
    width: calc(100%);
    height: 0;
    padding-bottom: calc(100%);
    position: relative;
  }
}

.crisis .card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  background-size: cover;
  border: none;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
  overflow: hidden;
  background-position: center center;
}

.crisis .info {
  text-align: center;
  width: 100%;
  height: 0px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
  color: #3E3A39;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
}

@media (max-width: 991px) {
  .crisis .info {
    opacity: 1;
    height: 40%;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.crisis .title {
  font-size: 20px;
}

.crisis p {
  font-size: 14px;
}

.crisis #theinfo {
  font-family: PMingLiU;
}

.crisis .card:hover .info {
  height: 40%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.crisis .row {
  width: 100%;
  margin: 0;
}

.crisis .banner {
  width: calc(100% / 3);
  margin: 0 auto;
  height: 300px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 25px;
}

@media (max-width: 991px) {
  .crisis .banner {
    width: 100%;
  }
}

.crisis .banner h3 {
  font-weight: 600;
}

.crisis .banner p {
  text-align: left;
}

.crisis .banner .highlight {
  color: #FF9E99;
  font-size: 18px;
  font-weight: 900;
}

.crisis .c1 {
  background-image: url("../images/crisis/纏繞.jpg");
}

.crisis .c2 {
  background-image: url("../images/crisis/船舶損壞.jpg");
}

.crisis .c3 {
  background-image: url("../images/crisis/食物鏈.jpg");
}

.crisis .c4 {
  background-image: url("../images/crisis/攝入.jpg");
}

.crisis .c5 {
  background-image: url("../images/crisis/旅遊業蕭條.jpg");
}

.crisis .c6 {
  background-image: url("../images/crisis/濃縮有毒汙染物.jpg");
}

footer {
  background-color: #245C81;
  width: 100%;
}

footer h1 {
  color: white;
  font-size: 28px;
}

footer .copyRight {
  width: 100%;
  text-align: center;
  color: white;
  margin: 0;
  padding: 20px 0;
}

footer .board {
  padding: 50px;
  padding-right: 0;
}

@media (max-width: 991px) {
  footer .board {
    padding: 20px;
  }
}

footer .board .form-control {
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

footer .board .form-control:focus {
  border: none;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}

footer .board .btn {
  background-color: #0C5DD8;
  color: white;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

footer .board .btn:focus {
  border: none;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

footer .board .content {
  padding: 20px 5px 20px 5px;
  border-radius: 3px;
  height: 200px;
  overflow: scroll;
  overflow-x: hidden;
}

footer .board .content::-webkit-scrollbar {
  width: 5px;
}

footer .board .content::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #0b3856;
}

footer .board .content::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

footer .board .content li {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 5px;
  margin: 8px 0px;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

footer .board .content .smalltext {
  font-size: 12px;
  color: #0C5DD8;
  font-weight: 600;
  float: right;
}

footer .refer {
  margin: 50px 0px;
  padding-left: 50px;
}

@media (max-width: 991px) {
  footer .refer {
    padding: 20px;
  }
}

footer .refer ul {
  padding: 0;
  list-style-type: none;
  color: white;
}

footer .refer ul a {
  color: white;
  text-decoration: none;
}

footer .refer ul a:hover {
  color: #878787;
}

.scrollDrawing {
  background-color: #362E2B;
  position: relative;
}

.svg-D {
  width: 100%;
  background-image: url("../images/datatrash/bg.png");
  background-size: cover;
}

@media (max-width: 991px) {
  .svg-D {
    display: none;
  }
}

.svg-D .cls-1 {
  stroke: #fff;
}

.svg-M {
  width: 100%;
  background-image: url("../images/datatrash/bg2.png");
  background-size: cover;
  display: none;
}

.svg-M .cls-1 {
  stroke: #fff;
}

@media (max-width: 991px) {
  .svg-M {
    display: block;
  }
}

.sometext {
  position: absolute;
  padding: 100px;
  width: 50%;
  color: #ffffff;
}

.theTitle {
  position: absolute;
  left: 50%;
  top: 6%;
  -webkit-transform: translate(-50%, -6%);
          transform: translate(-50%, -6%);
  color: white;
}

.advise {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #194F73;
}

@media (max-width: 991px) {
  .advise {
    -webkit-transform: translate(-50%, -200px);
            transform: translate(-50%, -200px);
  }
}

@media (max-width: 991px) {
  .sometext {
    width: 100%;
    padding: 20px;
  }
}

.sometext-1 {
  top: 10%;
  right: 0px;
}

.sometext-2 {
  top: 23%;
  left: 0px;
}

.sometext-3 {
  top: 35%;
  right: 0px;
}

.sometext-4 {
  top: 48%;
  left: 0px;
}

.sometext-5 {
  top: 62%;
  right: 0px;
}

.sometext-6 {
  top: 76%;
  left: 0px;
}

.sometext-7 {
  top: 88%;
  right: 0px;
}

.data {
  color: #F7B52C;
  font-size: 50px;
  font-weight: 900;
}

.bigText {
  font-size: 30px;
}

.bigRed {
  font-size: 26px;
  color: #FF9E99;
}

.goTop {
  width: 100px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100000;
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  visibility: hidden;
}

@media (max-width: 991px) {
  .goTop {
    width: 48px;
  }
}

.show {
  display: block;
}

.hide {
  display: none !important;
}

.visable {
  visibility: visible;
}

.news {
  background-color: #3A7B9B;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.news h1 {
  text-align: center;
  color: #fff;
  margin: 20vh 0 8vh 0;
}

.news .swiper-container02 {
  height: 100%;
}

.news .container {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.news .swiper-slide-next {
  -webkit-animation: scale .8s;
          animation: scale .8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.news .swiper-slide {
  width: 100%;
  height: 100%;
}

.news .NewsBoxHover {
  display: none;
}

.news .swiper-wrapper {
  height: 300px;
  padding: 50px 0px;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.news .NewsBox {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.news .NewsBox1 {
  background-image: url("../images/news/news1.jpg");
}

.news .NewsBox2 {
  background-image: url("../images/news/news2.jpg");
}

.news .NewsBox3 {
  background-image: url("../images/news/news3.jpg");
}

.news .NewsBox4 {
  background-image: url("../images/news/news4.jpg");
}

.news .NewsInfo {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0px;
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #3A7B9B;
  color: #ffffff;
  padding: 10px 20px;
  opacity: 0;
}

.news .NewsInfo p {
  font-size: 14px;
}

.news .NewsBox:hover .NewsInfo {
  height: 50%;
  opacity: 1;
}

.news .swiper-slide-next .NewsInfo {
  height: 50%;
  opacity: 1;
}

@media (max-width: 767px) {
  .news .swiper-slide-active .NewsInfo {
    height: 50%;
    opacity: 1;
  }
  .news .swiper-slide-next .NewsInfo {
    height: 0%;
    opacity: 0;
  }
  .news .swiper-slide-prev .NewsInfo {
    height: 0%;
    opacity: 0;
  }
}

.news .bg {
  width: 100%;
  height: 60vh;
  background-color: #245C81;
  position: absolute;
  bottom: 0;
}

.trashh {
  background-image: url("../images/beach/sea.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}

.trashh .container {
  height: 70vh;
}

@media (max-width: 991px) {
  .trashh .container {
    height: auto;
  }
}

.trashh .coverr {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: translate(-10px, 55px) rotate(-120deg);
          transform: translate(-10px, 55px) rotate(-120deg);
}

.trashh .line1 {
  margin-left: 15%;
  margin-top: 25px;
  height: 5px;
  width: 70%;
  background-color: white;
}

.trashh .line2 {
  margin-left: 15%;
  margin-bottom: 25px;
  height: 5px;
  width: 70%;
  background-color: white;
}

.trashh .trashbin {
  height: 500px;
  width: 50%;
  float: left;
  position: relative;
  top: 5vh;
}

@media (max-width: 991px) {
  .trashh .trashbin {
    height: 500px;
    width: 100%;
    float: left;
    margin-bottom: 75px;
    top: 0vh;
    float: none;
  }
}

.trashh .trash {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
}

.trashh .bucket {
  height: 320px;
}

.trashh .note_wrap {
  height: auto;
  width: 50%;
  position: relative;
  background-color: #245C81;
  float: left;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px #6699CC;
          box-shadow: 10px 10px #6699CC;
  position: relative;
  top: 5vh;
}

@media (max-width: 991px) {
  .trashh .note_wrap {
    width: 100%;
    top: 0vh;
    float: none;
    padding: 1px 0;
  }
}

.trashh .note {
  padding: 0px 50px;
  margin: 50px auto;
  height: 90%;
  width: 90%;
  word-wrap: break-word;
  overflow: hidden;
  color: white;
  text-align: justify;
  text-justify: auto;
}

@media (max-width: 991px) {
  .trashh .note {
    padding: 0px 10px;
  }
}

.trashh .circle {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 999px;
}

.trashh .TL {
  top: 15px;
  left: 15px;
}

.trashh .TR {
  top: 15px;
  right: 15px;
}

.trashh .BL {
  bottom: 15px;
  left: 15px;
}

.trashh .BR {
  bottom: 15px;
  right: 15px;
}

.trashh #garbage1 {
  width: 70px;
  position: relative;
  bottom: 250px;
  opacity: 0;
}

.trashh #garbage2 {
  width: 130px;
  position: relative;
  bottom: 250px;
  opacity: 0;
}

.trashh #garbage3 {
  width: 120px;
  position: relative;
  bottom: 250px;
  opacity: 0;
}

.about {
  padding: 150px 0  300px 0;
}

.about h1 {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.about .col-lg-3 {
  width: clac(100%/4);
  height: 0;
  padding-bottom: calc(100%/4);
  position: relative;
}

@media (max-width: 991px) {
  .about .col-lg-3 {
    width: calc(100%/2);
    height: 0;
    padding-bottom: calc(100%/2);
    position: relative;
  }
}

.about .card {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  border: none;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
}

.about .card img {
  width: 100%;
  opacity: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: 3s;
  transition: 3s;
  border-radius: 10px;
}

.about path {
  stroke: #2687ff;
  stroke-dasharray: 400;
  opacity: 10;
  stroke-width: 5;
}

.about svg:hover path {
  -webkit-animation: animate 4s;
          animation: animate 4s;
  opacity: 0;
}

.about svg:hover + img {
  opacity: 1;
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
    fill: none;
    stroke-dashoffset: 1;
  }
  30% {
    opacity: 1;
    fill: none;
    stroke-dashoffset: 400;
  }
  90% {
    fill: none;
  }
  100% {
    opacity: 1;
    fill: none;
    stroke-dashoffset: 400;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
    fill: none;
    stroke-dashoffset: 1;
  }
  30% {
    opacity: 1;
    fill: none;
    stroke-dashoffset: 400;
  }
  90% {
    fill: none;
  }
  100% {
    opacity: 1;
    fill: none;
    stroke-dashoffset: 400;
  }
}

section .wave_footer {
  position: absolute;
  width: 100%;
  height: 102px;
  bottom: 0;
  left: 0;
  background: url("../images/footer/wave_a.png");
  -webkit-animation: animate2 10s linear infinite;
          animation: animate2 10s linear infinite;
}

section .wave_footer::before {
  content: '';
  width: 100%;
  height: 102px;
  background: url("../images/footer/wave_b.png");
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  -webkit-animation: animate-reverse 10s linear infinite;
          animation: animate-reverse 10s linear infinite;
}

section .wave_footer::after {
  content: '';
  width: 100%;
  height: 102px;
  background: url("../images/footer/wave_c.png");
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation: animate2 20s linear infinite;
          animation: animate2 20s linear infinite;
}

@-webkit-keyframes animate2 {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1920px;
  }
}

@keyframes animate2 {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1920px;
  }
}

@-webkit-keyframes animate-reverse {
  0% {
    background-position: 1920px;
  }
  100% {
    background-position: 0;
  }
}

@keyframes animate-reverse {
  0% {
    background-position: 1920px;
  }
  100% {
    background-position: 0;
  }
}

.aa {
  width: 100%;
}

.name-D {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .name-D {
    display: none;
  }
}

.name {
  text-align: center;
  color: #fff;
  margin: 10px 0px 30px 0px;
  font-size: 25px;
}

.name .school {
  font-size: 18px;
  color: #c7c7c7;
}

.name-M {
  width: 100%;
  display: none;
  color: #ffffff;
  margin: 10px 0 30px 0;
}

.name-M .col {
  width: 50%;
  text-align: center;
  float: left;
}

@media (max-width: 991px) {
  .name-M {
    display: block;
  }
}

.wave_footer {
  -webkit-filter: drop-shadow(0px -20px 10px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px -20px 10px rgba(0, 0, 0, 0.15));
}

#nav-M {
  display: none;
}

@media (max-width: 991px) {
  #nav-M {
    display: block;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #245C81;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .nav-wrapper ul li:nth-child(1) a {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .nav-wrapper ul li:nth-child(2) a {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .nav-wrapper ul li:nth-child(3) a {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .nav-wrapper ul li:nth-child(4) a {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .nav-wrapper ul li:nth-child(5) a {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .nav-wrapper ul li:nth-child(6) a {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .nav-wrapper ul li:nth-child(7) a {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-wrapper ul li a {
    padding: 10px 0 24px 10px;
    opacity: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .nav-wrapper ul li:before {
    display: inline-block;
    content: "";
    width: 2px;
    height: 18px;
    background-color: #fff;
  }
  .navBtn {
    position: fixed;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .navBtn i {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #245C81;
    border-radius: 2px;
    margin-left: 14px;
  }
  .navBtn i:nth-child(1) {
    margin-top: 16px;
  }
  .navBtn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .navBtn i:nth-child(3) {
    margin-top: 4px;
  }
}

#phoneNav:checked + .navBtn {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#phoneNav:checked + .navBtn i {
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#phoneNav:checked + .navBtn i:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(180deg);
          transform: translateY(6px) rotate(180deg);
}

#phoneNav:checked + .navBtn i:nth-child(2) {
  opacity: 0;
}

#phoneNav:checked + .navBtn i:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
          transform: translateY(-6px) rotate(90deg);
}

#phoneNav:checked ~ .nav-wrapper {
  z-index: 9900;
  opacity: 1;
}

#phoneNav:checked ~ .nav-wrapper ul li a {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hidden {
  display: none;
}

.flipcards {
  width: 100%;
  height: 80vh;
}

@media (max-width: 991px) {
  .flipcards {
    height: 270vh;
  }
}

.flipcards .flipcard {
  width: calc(100% / 3);
  height: 100%;
  float: left;
  background: black;
  background-size: cover;
}

@media (max-width: 991px) {
  .flipcards .flipcard {
    width: 100%;
    height: calc(100% / 3);
  }
}

.flipcards .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flipcards .card-front, .flipcards .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flipcards .card-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flipcards .front1 {
  background-image: url("../images/alter/paperstraw.jpg");
}

.flipcards .back1 {
  background-image: url("../images/alter/bear.png");
}

.flipcards .front2 {
  background-image: url("../images/alter/bag.png");
}

.flipcards .back2 {
  background-image: url("../images/alter/turtle.png");
}

.flipcards .front3 {
  background-image: url("../images/alter/soap.png");
}

.flipcards .back3 {
  background-image: url("../images/alter/seal.png");
}

.flipcards .flip-title {
  font-size: 30px;
  font-weight: 900;
  color: #000;
}

.flipcards .flipBtn {
  cursor: pointer;
  position: absolute;
  bottom: 10%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  color: #fff;
  border-radius: 6px;
  border: solid 2px black;
  outline: none;
  -webkit-transition: .5s;
  transition: .5s;
}

.flipcards .flipBtn:hover {
  background-color: #000;
}

.alterTitle {
  background-color: rgba(10, 10, 30, 0.7);
  position: absolute;
  z-index: 100;
  width: 100%;
}

.alterTitle h1 {
  margin: 0;
  color: #ffffff;
  text-align: center;
  padding: 40px 0 30px 0;
}

.flipToBack {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flipToFront {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
