@charset "UTF-8";

.kv {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .kv {
    justify-content: flex-start;
    padding-top: 90px;
  }
}

.kv .container {
  position: relative;
  z-index: 1;
  margin: 0 auto 0 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .kv .container {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .kv .container {
    width: 100%;
    padding: 0 20px;
  }
}

.dog {
  width: 50vw;
  position: absolute;
  top: 10%;
  right: -7.8%;
}

@media screen and (max-width: 1297px) {
  .dog {
    top: 15%;
    right: -10%;
  }
}

@media screen and (max-width: 1023px) {
  .dog {
    width: clamp(400px, 100%, 500px);
    position: relative;
    top: unset;
    right: unset;
    transform: translateX(50px);
  }
}

.dog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footprint {
  width: 7vw;
  position: absolute;
  top: 10%;
  left: 3.125%;
}

.footprint img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1023px) {
  .footprint {
    width: 10vw;
    top: 8%;
    left: unset;
    right: 3.125%;
  }
}

.decoration {
  width: 1680px;
  position: absolute;
  left: -980px;
  bottom: -720px;
}

@media screen and (max-width: 1297px) {
  .decoration {
    width: 1200px;
    left: -700px;
    bottom: -520px;
  }
}

@media screen and (max-width: 1023px) {
  .decoration {
    display: none;
  }
}

.decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kv__title {
  width: 696px;
  margin-bottom: 50px;
}

.kv__title img {
  width: 100%;
  vertical-align: middle;
}

@media screen and (max-width: 1475px) {
  .kv__title {
    width: 550px;
  }
}

@media screen and (max-width: 1297px) {
  .kv__title {
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .kv__title {
    width: clamp(200px, 90%, 500px);
    margin-bottom: 30px;
  }
}

.kv__content {
  width: 456px;
}

.kv__content img {
  width: 100%;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .kv__content {
    width: clamp(200px, 100%, 450px);
  }
}

.kv__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 45px;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.584);
  margin: 30px 0 0;
}

.kv__btn:hover {
  border: 2px solid #0a70ba;
}

.kv__btn img {
  width: 100%;
  vertical-align: middle;
}

.kv__btn .text {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

.kv__btn:hover .text {
  color: #0a70ba;
}

@media screen and (max-width: 413px) {
  .kv__btn {
    align-self: flex-start;
  }
}

.arrow {
  width: 20px;
  height: 20px;
  background-image: url("../img/home/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: wobble 1s linear infinite;
}

.kv__btn:hover .arrow {
  background-image: url("../img/home/arrow-hover.svg");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header {
  position: relative;
  width: 100%;
  left: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.header-top {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 20px;
  font-weight: 400;
  height: 52px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.314);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.314);
  background-color: #fff;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 475px) {
  .header-top {
    font-size: 18px;
  }
}

.header-top .logo {
  display: block;
  width: 140px;
  min-width: 140px;
  aspect-ratio: 288 / 72;
  z-index: 99998;
  margin-right: 100px;
}

@media screen and (max-width: 768px) {
  .header-top .logo {
    width: 100px;
    min-width: 100px;
    margin-right: 30px;
  }
}

.header-top .logo img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .menu {
    display: none;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.electrolux-links {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  background-color: #fff;
  height: 52px;
}

.electrolux-links a {
  white-space: nowrap;
}

.electrolux-links a:hover {
  color: #0a70ba;
}

.electrolux-slide {
  opacity: 0;
  visibility: hidden;
  margin-left: -15px;
}

@media screen and (max-width: 1023px) {
  .electrolux-links {
    display: none;
  }

  .electrolux-slide {
    width: auto;
    opacity: 1;
    visibility: visible;
    margin-left: 0;
  }
}

.menu-item {
  display: inline-block;
  cursor: pointer;
  padding: 0 20px;
  line-height: 48px;
  padding-top: 4px;
}

.menu-item:hover {
  color: #0a70ba;
}

.menu-item.active {
  color: #0a70ba;
}

.menu-toggle {
  display: none;
  padding: 10px;
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  z-index: 99998;
}

@media only screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.menu-toggle.active span {
  border-top: 3px solid transparent;
}

.menu-toggle.active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-toggle span {
  display: block;
  width: 26px;
  margin: 10px 0;
  position: relative;
  border-top: 3px solid #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  content: '';
  background: #000;
  height: 3px;
  width: 26px;
  position: absolute;
  top: -10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu-toggle span:after {
  top: 4px;
}

.menu-sub {
  position: fixed;
  top: -100%;
  left: 0;
  height: calc(100% - 52px);
  height: calc(100vh - 52px);
  width: 100%;
  padding: 100px 10% 100px;
  background-color: #f7f8f8;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .menu-sub {
    overflow-y: scroll;
  }
}

.menu-sub.open {
  top: 52px;
  z-index: 9997;
}

.menu-sub-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4%;
}

.menu-sub-item.A-bounceIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: A-bounceIn;
  animation-name: A-bounceIn;
}

@media screen and (max-width: 475px) {
  .menu-sub-item {
    font-size: 26px;
  }
}

.menu-sub-item:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.menu-sub-item:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.menu-sub-item:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.menu-sub-item:nth-child(4) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.menu-sub-item:nth-child(5) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.menu-sub-item:hover {
  color: #0a70ba;
}

.menu-sub-item.active {
  color: #0081cc;
}

.off {
  color: #ddd;
}

.off:hover {
  color: #ddd;
}

@media (max-width: 413px) {
  .menu__items {
    width: 180px;
  }
}

.menu__items.splide {
  visibility: visible;
}

.menu__items .splide__track a {
  display: block;
  line-height: 50px;
}

.menu__items .splide__track a.active {
  color: #0a70ba;
}

.menu__items .splide__track a.active:hover {
  color: #0a70ba;
}

.menu__items .splide__track a.active:after {
  width: 100%;
}

.menu__items .splide__track a:hover {
  color: #0a70ba;
}

.menu__items .splide__track a.disabled {
  color: #999;
  cursor: default;
}

.menu__items ul li {
  margin-right: 40px !important;
}

@media screen and (max-width: 767px) {
  .menu__items ul li {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 475px) {
  .menu__items ul li {
    margin-right: 10px !important;
  }
}

.menu__items ul li:last-child {
  margin-right: 0 !important;
}

.splide__arrow--prev {
  left: -20px;
}

.splide__arrow--next {
  right: 470px;
}

@media screen and (max-width: 1023px) {
  .splide__arrow--next {
    right: -20px;
  }
}

.splide__arrow {
  width: 20px;
  height: 52px;
  opacity: 1;
  background: #fff;
}

.splide__arrow svg {
  width: 14px;
  height: 14px;
  margin-top: 4px;
}

@-webkit-keyframes A-bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes A-bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

footer {
  position: inherit;
  line-height: 1;
}

footer .footer-menu {
  font-size: 16px;
  line-height: 1;
}

footer .footer-menu a {
  text-decoration: none;
  padding: 0 10px;
  color: #c7c7c7;
  display: inline-block;
  font-size: 15px;
}

footer .footer-menu li span {
  font-family: "Microsoft JhengHei";
}

footer p.footer-coryright {
  font-size: 15px;
  line-height: 26px;
  color: #7d7d7d;
  padding: 0;
  margin-bottom: 0;
}

/* --------------------------------- layout ----------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
figure,
figcaption,
fieldset,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.clearfix:after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

html,
body {
  height: 100%;
  height: 100vh;
}

body {
  font-family: "Noto Sans TC", "黑體-繁", "Apple LiGothic Medium", "PingFang", "微軟正黑體", "Microsoft JhengHei", "WenQuanYi Zen Hei", "helvetica", "Arial", "sans-serif";
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  font-weight: 300;
  margin: 0;
  padding: 0;
  height: 100%;
  height: 100vh;
}

.wrapper {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 30px;
  text-align: center;
}

@media screen and (max-width: 1216px) {
  .wrapper {
    width: 1000px;
  }
}

@media screen and (max-width: 1016px) {
  .wrapper {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    width: 96%;
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  height: 5px;
  z-index: 999999;
  width: 0%;
  background-color: #ec6c00;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 99999;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.progress-bar {
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background: #f46c00;
}

/* --------------------------------- layout ----------------------------------- */
.page .primary {
  width: 100%;
  height: calc(100dvh - 52px);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-size: cover;
  margin-top: 52px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page .primary.S1 {
  background: url("../img/page1/banner-web.webp") no-repeat;
  background-position: 75% top;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .page .primary.S1 {
    background: url("../img/page1/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S2 {
  background: url("../img/page2/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1199px) {
  .page .primary.S2 {
    background: url("../img/page2/banner-web2.webp") no-repeat;
    background-position: 74% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S2 {
    background: url("../img/page2/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S3 {
  background: url("../img/page3/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1199px) {
  .page .primary.S3 {
    background-position: 70% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S3 {
    background: url("../img/page3/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S4 {
  background: url("../img/page4/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1499px) {
  .page .primary.S4 {
    background-position: 20% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S4 {
    background: url("../img/page4/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S5 {
  background: url("../img/page5/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1499px) {
  .page .primary.S5 {
    background-position: 20% top;
    background-size: cover;
  }
}
@media screen and (max-width: 1023px) {
  .page .primary.S5 {
    background-position: 15% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S5 {
    background: url("../img/page5/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S6 {
  background: url("../img/page6/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1023px) {
  .page .primary.S6 {
    background: url("../img/page6/banner-web.webp") no-repeat;
    background-position: 90% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S6 {
    background: url("../img/page6/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary.S7 {
  background: url("../img/page7/banner-web.webp") no-repeat;
  background-position: 100% top;
  background-size: cover;
}

@media screen and (max-width: 1023px) {
  .page .primary.S7 {
    background: url("../img/page7/banner-web.webp") no-repeat;
    background-position: 90% top;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .page .primary.S7 {
    background: url("../img/page7/banner-mob.webp") no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.page .primary .title {
  width: 100%;
}

.page .primary .hero-header {
  position: absolute;
  bottom: 3%;
  width: 90%;
  line-height: 1.2;
}

.page .primary .heading {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: #000 1px 0 10px;
}

@media (max-width: 767px) {
  .page .primary .heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.page .primary .down {
  cursor: pointer;
  opacity: 0.8;
  z-index: 99999;
}

@media only screen and (max-width: 767px) {
  .page .primary .down {
    opacity: 1;
  }
}

.page .primary .down .i-arrow5-down:before {
  color: #fff;
  font-size: 40px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-animation: aDown 0.6s infinite linear alternate;
  animation: aDown 0.6s infinite linear alternate;
}

@media only screen and (max-width: 767px) {
  .page .primary .down .i-arrow5-down:before {
    font-size: 20px;
  }
}

.page .primary .down .i-arrow5-down:hover:before {
  color: #dcedff;
}

.article {
  padding-top: 80px;
  font-size: 21px;
  line-height: 36px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .article {
    font-size: 18px;
    padding-top: 40px;
  }
}

.article.top {
  position: relative;
}

.article .paragraph {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
  text-align: justify;
}

@media (max-width: 1297px) {
  .article .paragraph {
    width: 85%;
  }
}

.article .paragraph:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: silver;
  margin-top: 60px;
}

.article .paragraph p a {
  color: #0a70ba;
}

.article figcaption {
  max-width: 880px;
  width: 90%;
  margin: 60px auto;
}

@media (max-width: 1297px) {
  .article figcaption {
    width: 85%;
  }
}

.article figcaption img {
  display: block;
  width: 100%;
}

.article figure {
  font-size: 18px;
  color: #565656;
  margin-top: 10px;
  line-height: 25px;
}

@media (max-width: 767px) {
  .article figure {
    margin-top: 5px;
    font-size: 15px;
  }
}

.article h1 {
  font-size: 35px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .article h1 {
    font-size: 22px;
    line-height: 35px;
  }
}

.article h1 span {
  display: block;
}

.figcaption {
  width: 100% !important;
}

.figcaption img {
  border-radius: 8px;
}

.annotation {
  font-size: 16px;
  font-style: italic;
  color: gray;
}

@media (max-width: 767px) {
  .note {
    font-size: 13px;
  }
}

.extend {
  margin-bottom: 60px;
}

@media (max-width: 1023px) {
  .extend {
    max-width: 525px;
    margin: 0 auto 60px;
    width: 85%;
  }
}

.extend .article {
  display: block;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 0;
}

@media (max-width: 1023px) {
  .extend .article {
    width: 100%;
  }
}

.extend .article__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

@media (max-width: 1023px) {
  .extend .article__list {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

.extend .article__link {
  width: calc(100% / 4);
  max-width: 200px;
}

@media (max-width: 1023px) {
  .extend .article__link {
    width: calc(100% / 2);
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .extend .article__link {
    max-width: inherit;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .extend .article__link:nth-child(3) {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .extend .article__link:nth-child(3) {
    padding-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .extend .article__link:nth-child(4) {
    padding-bottom: 0;
  }
}

.extend .article__img {
  overflow: hidden;
  max-width: 200px;
  max-height: 195px;
}

@media (max-width: 767px) {
  .extend .article__img {
    max-width: inherit;
    width: 150px;
  }
}

.extend .article__text {
  font-size: 16px;
  line-height: 25px;
  padding-top: 10px;
  color: #636363;
}

@media (max-width: 767px) {
  .extend .article__text {
    padding-top: 0;
    width: calc(100% - 160px);
  }
}

.extend .article .title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .extend .article .title {
    font-size: 18px;
    line-height: 26px;
  }
}

.extend .article a {
  display: block;
  text-decoration: none;
}

@media (max-width: 767px) {
  .extend .article a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.extend .article a:hover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.extend .article img {
  display: block;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.producer {
  padding: 100px 0;
  background-color: #fff;
}

@media (max-width: 767px) {
  .producer {
    padding: 80px 0;
  }
}

.producer__logos {
  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;
  margin: 0 auto;
  width: 70%;
}

@media (max-width: 414px) {
  .producer__logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 180px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.producer__logos a,
.producer__logos span {
  margin: 0 1%;
}

.producer__logos a img {
  height: 36px;
}

@media (max-width: 767px) {

  .producer__logos a,
  .producer__logos span {
    margin: 0 2%;
  }
}

@media (max-width: 414px) {

  .producer__logos a,
  .producer__logos span {
    margin: 5% 0;
  }
}

.producer__logos span {
  width: 45px;
}

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

@media (max-width: 414px) {
  .producer__logos img {
    width: inherit;
  }
}

.producer__list {
  width: 350px;
  margin: 40px auto 0;
  list-style-type: none;
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (max-width: 767px) {
  .producer__list {
    margin: 20px auto 0;
  }
}

@media (max-width: 414px) {
  .producer__list {
    font-size: 15px;
    width: 200px;
  }
}

.producer__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 27px;
}

@media (max-width: 414px) {
  .producer__list li {
    line-height: 23px;
  }
}

@media (max-width: 414px) {
  .producer__list li .comma {
    display: none;
  }
}

@media (max-width: 414px) {
  .producer__list li .adj {
    display: block;
  }
}

.producer__list li .title {
  width: 75px;
  text-align: right;
  margin-right: 15px;
}

.producer__list li .text {
  width: calc(100% - 75px);
}

.producer__list li span {
  margin-top: inherit;
}

.producer .socialBtn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  margin-left: 0;
}

@media (max-width: 767px) {
  .producer .socialBtn {
    margin-top: 40px;
  }
}

.method__top {
  position: relative;
}

.method__top:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #0a70ba;
  bottom: 30px;
  z-index: -1;
}

.method__top img {
  display: block;
  width: 150px;
  margin: 0 auto;
}

.method__title {
  text-align: left;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .method__title {
    font-size: 26px;
  }
}

@media (max-width: 414px) {
  .method__title {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .method__title {
    font-size: 18px;
  }
}

.method__title span {
  display: block;
}

.method__title b {
  color: #0a70ba;
  font-weight: 400;
}

.method__content {
  position: absolute;
  top: 140px;
  overflow-y: hidden;
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  height: calc(80vh - 300px);
  text-align: left;
  font-size: 18px;
}

@media (max-width: 767px) {
  .method__content {
    font-size: 16px;
    height: calc(80vh - 280px);
  }
}

.method__content ul {
  list-style: none;
  margin-top: 15px;
}

.method__content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 10px;
}

@media (max-width: 514px) {
  .method__content ul li {
    display: inherit;
  }
}

.method__content ul li b {
  font-weight: 400;
  color: #0a70ba;
}

.method__content ul li span:first-child {
  width: 100px;
  color: #fff;
  text-align: center;
  padding: 2px 10px;
  background-color: #0a70ba;
  border-radius: 15px;
  margin-right: 10px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .method__content ul li span:first-child {
    width: 85px;
  }
}

.method__content ul li span:nth-child(2) {
  width: calc(100% - 110px);
}

@media (max-width: 767px) {
  .method__content ul li span:nth-child(2) {
    width: calc(100% - 90px);
  }
}

@media (max-width: 514px) {
  .method__content ul li span:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 514px) {
  .method__content ul li span.awards {
    display: block;
    width: 100%;
  }
}

.method__bu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  height: 60px;
  padding-bottom: 10px;
}

.method__bu .partake {
  margin: 0 auto;
  width: 200px !important;
  color: #fff;
  background-color: #139bf3;
  border-radius: 30px;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 10px 0px 0px #484848;
  box-shadow: 0px 10px 0px 0px #484848;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0;
}

@media (max-width: 767px) {
  .method__bu .partake {
    width: 160px !important;
  }
}

.method__bu .partake:hover {
  -webkit-box-shadow: 0px 8px 0px 0px #484848;
  box-shadow: 0px 8px 0px 0px #484848;
}

.method__bu .partake:hover img {
  -webkit-animation: animate 0.8s ease-in-out infinite;
  animation: animate 0.8s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .facebook-comment {
    max-width: 525px;
    margin: 0 auto;
    width: 85%;
  }
}

.facebook-comment .container {
  max-width: 880px;
  width: 90%;
  margin: 60px auto;
  text-align: justify;
}

@media (max-width: 1023px) {
  .facebook-comment .container {
    width: 100%;
  }
}

.fb_iframe_widget_fluid_desktop,
.fb_iframe_widget_fluid_desktop span,
.fb_iframe_widget_fluid_desktop iframe {
  max-width: 100% !important;
  width: 100% !important;
}

@-webkit-keyframes color {
  0% {
    background-color: #0a70ba;
  }

  100% {
    background-color: #139bf3;
  }
}

@keyframes color {
  0% {
    background-color: #0a70ba;
  }

  100% {
    background-color: #139bf3;
  }
}

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

  20% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  60% {
    -webkit-transform: scale 1;
    transform: scale 1;
  }

  90% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

  20% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  60% {
    -webkit-transform: scale 1;
    transform: scale 1;
  }

  90% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes wobble {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.33% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes wobble {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.33% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes sliderShape {

  0%,
  100% {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

@keyframes sliderShape {

  0%,
  100% {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

@-webkit-keyframes aDown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
}

@keyframes aDown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
}

@keyframes wobble {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.33% {
      -webkit-transform: translateX(-5px);
      transform: translateX(-5px);
  }

  49.95% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px);
  }
  66.6% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px);
  }
  83.25% {
      -webkit-transform: translateX(1px);
      transform: translateX(1px);
  }
  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}

/*# sourceMappingURL=style.css.map */