@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap");
/*-------------------------------------------*\
	_common.scss

  Index
  - 1.title
  - 2.more
  - 3.img-slide
  - 4.anmiate
\*-------------------------------------------*/
.idx-title {
  position: relative;
  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;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  text-shadow: 10px 10px 15px rgba(56, 52, 76, 0.35);
}
.idx-title h2 {
  margin-bottom: 1rem;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  color: #38344c;
}
.idx-title p {
  font-family: "Nunito", sans-serif;
  color: #fff;
}

@media (min-width: 576px) {
  .idx-title {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
}
.more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.more-btn a {
  position: relative;
  z-index: 0;
  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;
  width: 100%;
  max-width: 220px;
  height: 60px;
  background: #38344c;
  color: #fff;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: auto !important;
  border-radius: 5rem;
  overflow: hidden;
  -webkit-box-shadow: 10px 15px 25px rgba(56, 52, 76, 0.5);
          box-shadow: 10px 15px 25px rgba(56, 52, 76, 0.5);
}
.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.more-btn a:before {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  background: #0f7ad7;
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
.more-btn a:after {
  background: -webkit-gradient(linear, right top, left bottom, from(#1e42d7), color-stop(50%, #00b5d7), to(#87e183));
  background: linear-gradient(top right, #1e42d7 0%, #00b5d7 50%, #87e183 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a span {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 2px;
  text-align: center;
  font-family: -apple-system, "Microsoft Jhenghei", PingFangTc, "Noto Sans TC", Arial, "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 4px;
  font-size: 1.25rem;
  font-weight: 300;
}
.more-btn a span:before {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  width: 30px;
  height: 30px;
  background: url(../../images/more-icon.svg) no-repeat center center/cover;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover span {
  color: #0f7ad7;
}
.more-btn a:hover span:before {
  background: url(../../images/more-icon-hover.svg) no-repeat center center/cover;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:before {
  left: 0;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:after {
  left: 0;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}

.color-reverse a {
  border: 1px solid #fff;
}
.color-reverse a:before {
  background: #0f7ad7;
}
.color-reverse a:after {
  background: #fff;
}
.color-reverse a span {
  color: #fff;
}
.color-reverse a span:before {
  background: #fff;
}
.color-reverse a span:after {
  border-top: 2px solid #1e42d7;
  border-right: 2px solid #1e42d7;
}
.color-reverse a:hover span {
  color: #1e42d7;
}

@media (min-width: 576px) {
  .more-btn a {
    max-width: 285px;
    font-size: 1.5rem;
    height: 66px;
  }
}
.slide-img {
  position: relative;
}
.slide-img:before, .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.slide-img:before {
  background: #0f7ad7;
  z-index: 1;
}
.slide-img:after {
  background: #1e42d7;
  z-index: 2;
}
.slide-img.active:before {
  -webkit-animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
          animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.slide-img.active:after {
  -webkit-animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
          animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes clipInLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@keyframes clipInLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
.clipInLeft {
  -webkit-animation-name: clipInLeft;
          animation-name: clipInLeft;
}

@-webkit-keyframes clipInTop {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
}
.before-clip:before, .before-clip:after {
  -webkit-animation: clipInTop 1s ease-in-out 0.5s forwards;
          animation: clipInTop 1s ease-in-out 0.5s forwards;
}

/*-------------------------------------------*\
	_banner
\*-------------------------------------------*/
.banner-wrap {
  position: relative;
  margin-top: 70px;
  height: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .banner-wrap {
    margin-top: 0;
  }
}
.banner-wrap:before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.banner-owl {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-owl .owl-dots {
  display: none !important;
  bottom: 6rem !important;
}
@media (min-width: 768px) {
  .banner-owl .owl-dots {
    display: block !important;
  }
}
.banner-owl .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  outline: 2px solid #fff;
  margin: 0 10px !important;
  background: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 50% !important;
}
.banner-owl .owl-dots .owl-dot.active span {
  background: white !important;
}
.banner-owl .item {
  position: relative;
  width: 100%;
}
.banner-owl .item figure {
  position: relative;
  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;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-owl .item figure:before {
  display: block;
  content: "";
  padding-top: 600px;
}
@media (min-width: 768px) {
  .banner-owl .item figure:before {
    padding-top: 760px;
  }
}
@media (min-width: 1100px) {
  .banner-owl .item figure:before {
    padding-top: 800px;
  }
}
@media (min-width: 1200px) {
  .banner-owl .item figure:before {
    padding-top: calc(100vh - 0px);
  }
}
.banner-owl .item figure img, .banner-owl .item figure video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner-scroll {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  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;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  pointer-events: none;
}
.banner-scroll:before, .banner-scroll:after {
  content: "";
  position: absolute;
  z-index: 1;
}
.banner-scroll:before {
  left: calc(50% - 16px);
  bottom: 7rem;
  width: 27px;
  height: 41px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 5rem;
}
.banner-scroll:after {
  left: calc(50% - 1px);
  bottom: 8.75rem;
  height: 13px;
  width: 2px;
  background: #fff;
  -webkit-animation: mouseicon 1.5s linear 0.2s infinite;
          animation: mouseicon 1.5s linear 0.2s infinite;
}
.banner-img-xl, .banner-slogan-xl {
  display: none;
}
@media (min-width: 1200px) {
  .banner-img-xl, .banner-slogan-xl {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .banner-img-xs, .banner-slogan-xs {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .banner-scroll:before {
    bottom: 2rem;
  }
  .banner-scroll:after {
    bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .banner-owl .owl-dots {
    bottom: 8rem !important;
  }
}
.banner-aqi {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  left: 1rem;
  overflow: hidden;
  width: 260px;
}
.banner-aqi .item {
  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;
}
.banner-aqi-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.75rem;
  width: 60px;
}
.banner-aqi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  line-height: 1.75;
}
.banner-aqi-text strong {
  letter-spacing: 1px;
}
.banner-aqi-text p {
  color: var(--words-color);
}
.banner-aqi-text i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background: var(--bg-color);
  color: #fff !important;
  border-radius: 50%;
}
.banner-aqi-text small {
  display: none;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .banner-aqi {
    left: 2rem;
    bottom: 2rem;
    width: 300px;
  }
  .banner-aqi-icon {
    width: 80px;
  }
  .banner-aqi-text small {
    display: block;
  }
}
@media (min-width: 1200px) {
  .banner-aqi {
    left: 45px;
    bottom: 3rem;
  }
}
/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1;
}

/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0;
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mouseicon {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}
@keyframes mouseicon {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}
@keyframes clipInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  99% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@-webkit-keyframes clipInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@keyframes clipInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
/*-------------------------------------------*\
	_knowledge.scss  pansci-list
\*-------------------------------------------*/
/*-------------------------------------------*\
  _pansci.scss
\*-------------------------------------------*/
.usr-type {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 3rem 0;
  overflow-x: scroll;
  font-size: 1.125rem;
}
.usr-type.mt-0 {
  margin-top: 0;
}
.usr-type::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .usr-type {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: initial;
  }
}
@media (min-width: 1200px) {
  .usr-type {
    margin: 3rem 0 4rem;
    font-size: 1.3125rem;
  }
  .usr-type.mt-0 {
    margin-top: 1rem;
  }
}
.usr-type a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 120px;
  margin: 0 3px;
  padding: 0.75rem 1rem;
  background: #38344c;
  color: #fff;
  border-radius: 100px;
}
.usr-type0.active {
  background: linear-gradient(135deg, #87e183 0%, #00b5d7 50%, #1e42d7 100%);
}
.usr-type1.active {
  background: #0f7ad7;
}
.usr-type2.active {
  background: #00b5d7;
}
.usr-type3.active {
  background: #8e5b51;
}
.usr-type4.active {
  background: #838c5a;
}

.pansci-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .pansci-list {
    margin-bottom: 3rem;
  }
}
.pansci-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .pansci-item {
    width: 50%;
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .pansci-item {
    width: 33.3333%;
  }
}
@media (min-width: 1400px) {
  .pansci-item {
    width: 25%;
  }
}
.pansci-item a {
  display: block;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 10px 15px 20px rgba(56, 52, 76, 0.25);
          box-shadow: 10px 15px 20px rgba(56, 52, 76, 0.25);
}
.pansci-item a:hover {
  -webkit-box-shadow: 15px 20px 35px rgba(56, 52, 76, 0.7);
          box-shadow: 15px 20px 35px rgba(56, 52, 76, 0.7);
}
.pansci-item a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.pansci-img {
  position: relative;
}
.pansci-img figure {
  position: relative;
  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;
  overflow: hidden;
}
.pansci-img figure::before {
  display: block;
  content: "";
  padding-top: 66.6666%;
}
.pansci-img img, .pansci-img iframe {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.pansci-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  font-size: 1.125rem;
  line-height: 2;
}
.pansci-data.pi-color-1 .pansci-type {
  background: #0f7ad7;
}
.pansci-data.pi-color-1 .pansci-date {
  color: #0f7ad7;
}
.pansci-data.pi-color-2 .pansci-type {
  background: #00b5d7;
}
.pansci-data.pi-color-2 .pansci-date {
  color: #00b5d7;
}
.pansci-data.pi-color-3 .pansci-type {
  background: #8e5b51;
}
.pansci-data.pi-color-3 .pansci-date {
  color: #8e5b51;
}
.pansci-data.pi-color-4 .pansci-type {
  background: #838c5a;
}
.pansci-data.pi-color-4 .pansci-date {
  color: #838c5a;
}
.pansci-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.pansci-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 1rem;
  min-width: 100px;
  background: #807979;
  color: #fff;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  border-radius: 5rem;
}
.pansci-date {
  font-family: Arial, "Noto Sans TC";
  white-space: nowrap;
}
.pansci-title {
  margin-bottom: 8px;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.pansci-text {
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 1rem;
  color: #6e6d7a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.modal {
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  height: calc(var(--mvh, 1vh) * 100);
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.85); /* Black w/ opacity */
}
.modal-content {
  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;
  height: 100%;
  background: none !important;
  color: #fff;
  font-size: 0.95rem;
}
.modal-content img {
  width: 20%;
  max-width: 80px;
}

.knowledge-wrap {
  position: relative;
  padding: 5rem 0;
  background: url(../../images/main-center-bg.jpg) repeat center top/contain;
  background-size: 250%;
}
.knowledge-wrap .pansci-item {
  padding: 1rem;
}
@media (min-width: 768px) {
  .knowledge-wrap {
    background-size: 180%;
  }
}
@media (min-width: 1400px) {
  .knowledge-wrap {
    background-size: 100%;
  }
}
.knowledge-wrap:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/index-knowledge-bg.jpg) no-repeat center top/cover;
  background-size: 250%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .knowledge-wrap:before {
    background-size: 180%;
  }
}
@media (min-width: 1400px) {
  .knowledge-wrap:before {
    background-size: 100%;
    mix-blend-mode: normal;
  }
}

@media (min-width: 768px) {
  .knowledge-wrap .pansci-item {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .knowledge-wrap .pansci-item {
    width: 33.3333%;
  }
}
@media (min-width: 1400px) {
  .knowledge-wrap {
    padding: 7.625rem 0;
  }
  .knowledge-wrap .container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .knowledge-wrap .idx-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 10rem;
  }
  .knowledge-wrap .pansci-list {
    width: 100%;
    max-width: 960px;
    margin-bottom: 0;
  }
  .knowledge-wrap .more-btn {
    position: absolute;
    left: 0;
    top: calc(50% + 2rem);
    min-width: 300px;
  }
}
@media (min-width: 1600px) {
  .knowledge-wrap .pansci-list {
    max-width: 992px;
  }
}
/*-------------------------------------------*\
	_consult.scss
\*-------------------------------------------*/
.consult-wrap {
  position: relative;
  padding: 5rem 0;
  background: url(../../images/consult-bg.jpg) repeat center center/contain;
}
@media (min-width: 1400px) {
  .consult-wrap {
    padding: 7rem 0;
  }
}
.consult-wrap:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/index-consult-bg.jpg) no-repeat center top 50px/cover;
  mix-blend-mode: multiply;
  background-size: 300%;
  pointer-events: none;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .consult-wrap:before {
    background-size: 200%;
    background-position: center top 50px;
  }
}
@media (min-width: 1200px) {
  .consult-wrap:before {
    background-size: 150%;
  }
}
@media (min-width: 1400px) {
  .consult-wrap:before {
    background-size: 100%;
    background-position: center top 15px;
  }
}
.consult-content {
  position: relative;
  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: 3rem 0 4rem;
  color: #fff;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
}
@media (min-width: 1200px) {
  .consult-content {
    padding: 3rem 0 5rem;
  }
}
@media (min-width: 1600px) {
  .consult-content {
    padding: 2.5rem 0 4.25rem;
  }
}
.consult-content h3 {
  font-size: 1.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 414px) {
  .consult-content h3 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .consult-content h3 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .consult-content h3 {
    font-size: 3.75rem;
  }
}
.consult-content p {
  line-height: 2;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .consult-content p {
    font-size: 1.5rem;
  }
}

/*-------------------------------------------*\
	_monitor.scss
\*-------------------------------------------*/
.monitor-wrap {
  position: relative;
  padding: 5rem 0;
  background: url(../../images/index-monitor-bg.jpg) repeat center center;
  background-size: 100%;
}
@media (min-width: 1400px) {
  .monitor-wrap {
    background-attachment: fixed;
  }
}
.monitor-wrap .idx-title h2 {
  color: #fff;
}
.monitor-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  pointer-events: none;
}
.monitor-wrap .more-btn a {
  background: #fff;
  color: #38344c;
}
.monitor-wrap .more-btn a:hover {
  color: #fff;
}
.monitor-content {
  position: relative;
  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;
  color: #fff;
  padding: 1rem 0 3rem;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .monitor-content {
    font-size: 1.5rem;
  }
}
.monitor-tip {
  padding: 2rem 1rem 0;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media (min-width: 1200px) {
  .monitor-tip {
    width: 780px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .monitor-tip {
    width: initial;
  }
}
.monitor-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.monitor-type a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 1rem);
  height: calc(50vw - 2rem - 5px);
  margin: 0.5rem;
  color: #fff;
  border-radius: 0.75rem;
}
@media (min-width: 576px) {
  .monitor-type a {
    height: 238px;
  }
}
@media (min-width: 768px) {
  .monitor-type a {
    height: 328px;
  }
}
@media (min-width: 992px) {
  .monitor-type a {
    height: 388px;
  }
}
@media (min-width: 1400px) {
  .monitor-type a {
    height: 308px;
  }
}
@media (min-width: 1600px) {
  .monitor-type a {
    height: 320px;
  }
}
.monitor-type a img {
  width: 56%;
  -webkit-filter: drop-shadow(7px 7px 10px rgba(56, 52, 76, 0.5));
          filter: drop-shadow(7px 7px 10px rgba(56, 52, 76, 0.5));
}
.monitor-type a.ty01 {
  background: url(../../images/monitor-ty1.jpg);
}
.monitor-type a.ty02 {
  background: url(../../images/monitor-ty2.jpg);
}
.monitor-type a.ty03 {
  background: url(../../images/monitor-ty3.jpg);
}
.monitor-type a.ty04 {
  background: url(../../images/monitor-ty4.jpg);
}
.monitor-type h3 {
  margin: 1rem 0 0;
  text-shadow: 7px 7px 10px rgba(56, 52, 76, 0.5);
}

@media (min-width: 1400px) {
  .monitor-wrap {
    padding: 6rem 0;
  }
  .monitor-wrap .container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .monitor-wrap .idx-title {
    width: 50%;
    margin-bottom: 9rem;
  }
  .monitor-wrap .more-btn {
    position: absolute;
    left: calc(25% - 140px);
    top: calc(50% + 5rem);
    min-width: 300px;
  }
  .monitor-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1rem 0;
  }
  .monitor-tip {
    padding: 2rem 0;
    max-width: 550px;
  }
  .monitor-type {
    width: 680px;
  }
  .monitor-type a {
    max-width: 340px;
  }
  .monitor-type a:hover {
    mix-blend-mode: lighten;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
  }
  .monitor-type a:hover img {
    -webkit-filter: drop-shadow(10px 10px 15px #38344c);
            filter: drop-shadow(10px 10px 15px #38344c);
  }
  .monitor-type a:hover h3 {
    text-shadow: 10px 10px 15px rgba(56, 52, 76, 0.5);
  }
}
@-webkit-keyframes deepwater {
  0% {
    -webkit-backdrop-filter: blur(9px);
            backdrop-filter: blur(9px);
  }
  70% {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  100% {
    -webkit-backdrop-filter: blur(9px);
            backdrop-filter: blur(9px);
  }
}
@keyframes deepwater {
  0% {
    -webkit-backdrop-filter: blur(9px);
            backdrop-filter: blur(9px);
  }
  70% {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  100% {
    -webkit-backdrop-filter: blur(9px);
            backdrop-filter: blur(9px);
  }
}
/*-------------------------------------------*\
	_sharing.scss
\*-------------------------------------------*/
/*-------------------------------------------*\
	_sharing.scss
  1.列表(與首頁共用)
  2.投稿按鈕
  3.投稿頁(表單)
\*-------------------------------------------*/
.share-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .share-list {
    margin-bottom: 3rem;
  }
}
.share-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .share-item {
    width: 50%;
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .share-item {
    width: 33.3333%;
  }
}
@media (min-width: 1400px) {
  .share-item {
    width: 25%;
  }
}
.share-item a {
  display: block;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 10px 15px 20px rgba(56, 52, 76, 0.25);
          box-shadow: 10px 15px 20px rgba(56, 52, 76, 0.25);
}
.share-item a:hover {
  -webkit-box-shadow: 15px 20px 20px rgba(56, 52, 76, 0.7);
          box-shadow: 15px 20px 20px rgba(56, 52, 76, 0.7);
}
.share-item a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.share-item:nth-child(5n+1) .share-date {
  color: #0f7ad7;
}
.share-item:nth-child(5n+1) .share-person {
  background: #0f7ad7;
}
.share-item:nth-child(5n+2) .share-date {
  color: #00b5d7;
}
.share-item:nth-child(5n+2) .share-person {
  background: #00b5d7;
}
.share-item:nth-child(5n+3) .share-date {
  color: #43cbad;
}
.share-item:nth-child(5n+3) .share-person {
  background: #43cbad;
}
.share-item:nth-child(5n+4) .share-date {
  color: #87e183;
}
.share-item:nth-child(5n+4) .share-person {
  background: #87e183;
}
.share-item:nth-child(5n+5) .share-date {
  color: #1e42d7;
}
.share-item:nth-child(5n+5) .share-person {
  background: #1e42d7;
}
.share-img {
  position: relative;
  border: 13px solid #fff;
  border-bottom: 0;
}
.share-img figure {
  position: relative;
  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;
  overflow: hidden;
}
.share-img figure::before {
  display: block;
  content: "";
  padding-top: 66.6666%;
}
.share-img img, .share-img iframe {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.share-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.75rem 1rem 2rem;
  font-size: 1.125rem;
  line-height: 2;
}
.share-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.share-person {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 1.5rem;
  margin: 1rem -1.5rem 0 0;
  min-width: 100px;
  background: #807979;
  color: #fff;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
.share-person:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  height: 0;
  width: 0;
  border-top: 8px solid #38344c;
  border-right: 8px solid transparent;
}
.share-date {
  font-family: Arial, "Noto Sans TC";
  line-height: 1.2;
}
.share-date i {
  white-space: nowrap;
  line-height: 1;
  font-size: 2.25rem;
}
.share-title {
  margin-bottom: 8px;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.share-text {
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 1rem;
  color: #6e6d7a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.share-button {
  position: absolute;
  z-index: 6;
  max-width: 120px;
  right: 10vw;
  top: 200px;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(56, 52, 76, 0.5));
          filter: drop-shadow(10px 10px 10px rgba(56, 52, 76, 0.5));
}
@media (min-width: 768px) {
  .share-button {
    top: 225px;
  }
}
@media (min-width: 1200px) {
  .share-button {
    max-width: 200px;
  }
}
@media (min-width: 1400px) {
  .share-button {
    top: 250px;
    max-width: 215px;
  }
}
.share-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: share_box 3s linear 0.2s infinite;
          animation: share_box 3s linear 0.2s infinite;
}

@-webkit-keyframes share_box {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes share_box {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.share-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem 0 2rem;
}
.share-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10rem;
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px rgba(56, 52, 76, 0.2);
          box-shadow: 10px 10px 10px rgba(56, 52, 76, 0.2);
}
.share-group input {
  position: absolute;
  opacity: 0;
}
.share-group input + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.3125rem 2.5rem;
  z-index: 2;
  width: 100%;
  color: #6e6d7a;
  font-family: "Nunito", "Kosugi Maru", "Noto Sans TC", sans-serif;
  font-size: 18px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  white-space: nowrap;
}
.share-group input:checked + label {
  color: #fff;
}
.share-group:before, .share-group:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 1;
  border-radius: 10rem;
  width: 170px;
  height: 56px;
  background: linear-gradient(135deg, #87e183 0%, #00b5d7 50%, #1e42d7 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.share-group:after {
  z-index: 0;
  width: calc(100% - 4px);
  background: linear-gradient(135deg, #e5e5e5 0%, #f8f8f8 50%, #e5e5e5 100%);
}
.share-group.active:before {
  left: calc(50% - 2px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sharing-wrap {
  position: relative;
  padding: 5rem 0;
  background: url(../../images/main-center-bg.jpg) repeat center top/contain;
  background-size: 200%;
  overflow: hidden;
}
.sharing-wrap .share-item {
  padding: 1rem;
}
@media (min-width: 768px) {
  .sharing-wrap {
    background-size: 180%;
  }
}
@media (min-width: 1400px) {
  .sharing-wrap {
    background-size: 100%;
  }
}
.sharing-wrap:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/index-sharing-bg.jpg) no-repeat center top 30px/cover;
  background-size: 200%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .sharing-wrap:before {
    background-size: 180%;
  }
}
@media (min-width: 1400px) {
  .sharing-wrap:before {
    background-size: 100%;
    mix-blend-mode: normal;
  }
}
@media (min-width: 1200px) {
  .sharing-wrap {
    padding: 7rem 0;
  }
}
.sharing-content {
  width: 100%;
  padding: 0 0.5rem;
}
@media (min-width: 576px) {
  .sharing-content {
    width: 540px;
    padding: 0 2.25rem;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .sharing-content {
    width: calc(656px + 5rem + 30px);
  }
}
@media (min-width: 992px) {
  .sharing-content {
    width: calc(896px + 5rem + 40px);
  }
}
@media (min-width: 1200px) {
  .sharing-content {
    padding: 0 2rem;
    width: calc(1136px + 3.5rem);
  }
}
@media (min-width: 1400px) {
  .sharing-content {
    width: 1340px;
  }
}
@media (min-width: 1600px) {
  .sharing-content {
    width: 1472px;
  }
}
@media (min-width: 1800px) {
  .sharing-content {
    width: 100%;
    margin-left: calc(50% - 772px);
  }
}
.sharing-owl .share-item {
  padding: 20px 20px 50px;
}
@media (min-width: 1400px) {
  .sharing-owl .share-item {
    padding: 40px 30px !important;
  }
}
.sharing-owl .owl-nav {
  top: calc(50% - 5px) !important;
}
@media (min-width: 1600px) {
  .sharing-owl .owl-nav {
    width: 1408px !important;
  }
}
@media (min-width: 1800px) {
  .sharing-owl .owl-nav {
    width: 1468px !important;
  }
}
.sharing-owl .owl-nav.disabled {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.sharing-owl .owl-nav [class*=owl-] {
  background: url(../../images/owl-prev.svg) no-repeat center center #38344c !important;
  background-size: contain !important;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.sharing-owl .owl-nav [class*=owl-]:hover {
  background-color: #00b5d7 !important;
  background-size: contain !important;
}
.sharing-owl .owl-nav .owl-prev {
  left: -1.5rem !important;
}
.sharing-owl .owl-nav .owl-prev:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.sharing-owl .owl-nav .owl-next {
  right: -1.5rem !important;
}
.sharing-owl .owl-nav .owl-next:hover {
  -webkit-box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.5);
}
@media (min-width: 576px) {
  .sharing-owl .owl-nav .owl-prev {
    left: -4.5rem !important;
  }
  .sharing-owl .owl-nav .owl-next {
    right: -4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .sharing-owl .owl-nav .owl-prev {
    left: -6.5rem !important;
  }
  .sharing-owl .owl-nav .owl-next {
    right: -6.5rem !important;
  }
}
@media (min-width: 1400px) {
  .sharing-owl .owl-nav .owl-prev {
    left: -8rem !important;
  }
  .sharing-owl .owl-nav .owl-next {
    right: -8rem !important;
  }
}
@media (min-width: 1600px) {
  .sharing-owl .owl-nav .owl-prev {
    left: -11rem !important;
  }
  .sharing-owl .owl-nav .owl-next {
    right: -11rem !important;
  }
}
@media (min-width: 1800px) {
  .sharing-owl .owl-nav .owl-prev {
    left: -12rem !important;
  }
  .sharing-owl .owl-nav .owl-next {
    right: -12.5rem !important;
  }
}
.sharing-owl .owl-dots {
  bottom: 0 !important;
}
@media (min-width: 1200px) {
  .sharing-owl .owl-dots {
    opacity: 0;
  }
}
.sharing-owl .owl-dots .owl-dot span {
  border-radius: 50% !important;
}
.sharing-owl .owl-dots .owl-dot.active span, .sharing-owl .owl-dots .owl-dot:hover span {
  background: -webkit-gradient(linear, right top, left bottom, from(#1e42d7), color-stop(50%, #00b5d7), to(#87e183)) !important;
  background: linear-gradient(top right, #1e42d7 0%, #00b5d7 50%, #87e183 100%) !important;
}

.sharing-wrap .owl-item:nth-child(5n+1) .share-date {
  color: #0f7ad7;
}
.sharing-wrap .owl-item:nth-child(5n+1) .share-person {
  background: #0f7ad7;
}
.sharing-wrap .owl-item:nth-child(5n+2) .share-date {
  color: #00b5d7;
}
.sharing-wrap .owl-item:nth-child(5n+2) .share-person {
  background: #00b5d7;
}
.sharing-wrap .owl-item:nth-child(5n+3) .share-date {
  color: #43cbad;
}
.sharing-wrap .owl-item:nth-child(5n+3) .share-person {
  background: #43cbad;
}
.sharing-wrap .owl-item:nth-child(5n+4) .share-date {
  color: #87e183;
}
.sharing-wrap .owl-item:nth-child(5n+4) .share-person {
  background: #87e183;
}
.sharing-wrap .owl-item:nth-child(5n+5) .share-date {
  color: #1e42d7;
}
.sharing-wrap .owl-item:nth-child(5n+5) .share-person {
  background: #1e42d7;
}
.sharing-wrap .share-item {
  width: 100% !important;
}
.sharing-wrap .share-data {
  height: 226px;
}
@media (min-width: 1200px) {
  .sharing-wrap .share-list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .sharing-wrap .share-list {
    margin-bottom: 3rem;
  }
}