:root {
  --color-bg-green: #677F57;
  --color-bg-yellow: #fbef5e;
  --color-bg-yellow-light: #eae3da;
  --color-bg-brown: #966F45;
  --color-text: #2f3f3e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-brown-light: #ad8d63;
  --color-brown: #C39E02;
  --color-brown-deep: #865b29;
  --color-lime: #7a8e6b;
  --color-green: #75a072;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--color-text);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  font-size: 45px;
  font-weight: 400;
  padding: 64px;
}
@media (max-width: 900px) {
  h2 {
    font-size: 26px;
    font-weight: 400;
    padding: 32px 16px;
  }
}

p {
  margin: 0;
}

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

section {
  min-height: 100vh;
  position: relative;
}

@media (max-width: 900px) {
  audio {
    width: 260px;
  }
}
audio::-webkit-media-controls-play-button, audio::-webkit-media-controls-panel {
  background-color: #D0CAC2;
  color: #ffffff;
}

.container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@-webkit-keyframes bg_rotate {
  0% {
    transform: rotate(10deg) scale(1);
  }
  100% {
    transform: rotate(-10deg) scale(1.05);
  }
}

@keyframes bg_rotate {
  0% {
    transform: rotate(10deg) scale(1);
  }
  100% {
    transform: rotate(-10deg) scale(1.05);
  }
}
#header {
  position: fixed;
  width: 100%;
  z-index: 1;
}
#header .top-logo {
  position: absolute;
  top: 48px;
  left: 48px;
}
@media (max-width: 900px) {
  #header .top-logo {
    top: 16px;
    left: 16px;
  }
}
#header .top-logo img {
  width: 48px;
  height: 48px;
}
@media (max-width: 900px) {
  #header .top-logo img {
    width: 32px;
    height: 32px;
  }
}
#header .bg-sound-switch {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
#header .bg-sound-switch:hover {
  background-color: var(--color-bg-green);
}
@media (max-width: 900px) {
  #header .bg-sound-switch {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}
#header .bg-sound-switch.off .on {
  display: none;
}
#header .bg-sound-switch.off .off {
  display: block;
}
#header .bg-sound-switch img {
  width: 32px;
}
@media (max-width: 900px) {
  #header .bg-sound-switch img {
    width: 24px;
  }
}
#header .bg-sound-switch img.off {
  display: none;
}

.btn-cta {
  position: relative;
  text-decoration: none;
  display: block;
  margin: 8px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: var(--color-brown-deep);
  border-radius: 16px;
}
.btn-cta span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 16px;
  color: var(--color-white);
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  background-color: var(--color-brown-light);
  transform: translate(-6px, -6px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-cta:hover span {
  background-color: var(--color-bg-brown);
  transform: translate(-4px, -4px);
}
.btn-cta img {
  width: 40px;
  margin-right: 8px;
}

#s1 .s1-bg {
  background-image: url(img/section-01/part-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 900px) {
  #s1 .s1-bg {
    background-image: url(img/section-01/part-2-mobi.jpg);
    overflow: hidden;
  }
}

#s1-1 {
  background-image: url(img/section-01/index-bg-day.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
@media (max-width: 900px) {
  #s1-1 {
    background-image: url(img/section-01/index-bg-day-mobi.jpg);
    overflow: hidden;
  }
}
#s1-1.night {
  background-image: url(img/section-01/index-bg-night.jpg);
}
@media (max-width: 900px) {
  #s1-1.night {
    background-image: url(img/section-01/index-bg-night-mobi.jpg);
  }
}
#s1-1.night .title-wrapper .bg.day {
  visibility: hidden;
}
#s1-1.night .title-wrapper .bg.night {
  visibility: visible;
}
#s1-1 .title-wrapper {
  position: relative;
  width: 600px;
  height: 450px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 900px) {
  #s1-1 .title-wrapper {
    width: 95%;
    height: auto;
  }
}
#s1-1 .title-wrapper .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
#s1-1 .title-wrapper .bg.night {
  visibility: hidden;
}
#s1-1 .title-wrapper .bg.animated {
  -webkit-animation: bg_rotate 10s linear infinite alternate;
          animation: bg_rotate 10s linear infinite alternate;
}
#s1-1 .title-wrapper .tree {
  position: absolute;
  bottom: 60px;
  right: 5%;
  width: 80px;
}
@media (max-width: 900px) {
  #s1-1 .title-wrapper .tree {
    bottom: 60px;
    right: 5%;
    width: 40px;
  }
}
#s1-1 .title-wrapper .title {
  position: relative;
  width: 90%;
  margin: 48px auto 16px;
}
@media (max-width: 900px) {
  #s1-1 .title-wrapper .title {
    margin: 24px auto 16px;
  }
}
#s1-1 .title-wrapper .sound {
  position: relative;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 16px;
  padding-top: 24px;
}
@media (max-width: 900px) {
  #s1-1 .title-wrapper .sound {
    font-size: 16px;
    padding-top: 0;
  }
}
#s1-1 .title-wrapper .sound-switch {
  position: relative;
  display: flex;
  justify-content: center;
}
#s1-1 .title-wrapper .sound-switch .on,
#s1-1 .title-wrapper .sound-switch .off {
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 6px;
  cursor: pointer;
}
#s1-1 .title-wrapper .sound-switch .on img,
#s1-1 .title-wrapper .sound-switch .off img {
  width: 18px;
  margin-right: 8px;
}
#s1-1 .title-wrapper .sound-switch .off {
  color: var(--color-white);
}
#s1-1 .title-wrapper .sound-switch .off:hover {
  box-shadow: 3px 3px 0 var(--color-brown);
  color: var(--color-text);
  background-color: var(--color-bg-yellow);
}
#s1-1 .title-wrapper .sound-switch .off:hover img {
  filter: brightness(0);
}
#s1-1 .title-wrapper .sound-switch .on {
  color: var(--color-text);
  background-color: var(--color-bg-yellow);
  filter: drop-shadow(3px 3px 0 var(--color-brown));
}
#s1-1 .desc {
  position: absolute;
  top: calc(50% + 200px);
  left: 48px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 900px) {
  #s1-1 .desc {
    top: calc(50% + 200px);
    font-size: 16px;
    left: auto;
  }
}

#s1-2 {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
#s1-2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
#s1-2 .container .title {
  flex: 0 1 100%;
  position: relative;
  margin: 0 0 0 48px;
}
@media (max-width: 900px) {
  #s1-2 .container .title {
    margin: 0 0 0;
  }
}
#s1-2 .container .title .bg {
  position: absolute;
  width: 600px;
  top: -32px;
  left: 64px;
}
@media (max-width: 900px) {
  #s1-2 .container .title .bg {
    width: 360px;
    left: 48px;
  }
}
#s1-2 .container .title h2 {
  background-image: url(img/section-01/title-2.svg);
  background-repeat: no-repeat;
  background-size: 640px auto;
  background-position: 10% 0%;
  position: relative;
  color: var(--color-white);
  padding: 80px 48px 48px 128px;
  margin-bottom: -32px;
}
@media (max-width: 900px) {
  #s1-2 .container .title h2 {
    background-size: 340px auto;
    background-position: 40px 0%;
    padding: 48px 32px 32px 64px;
    margin-bottom: -24px;
  }
}
#s1-2 .container .img {
  position: relative;
  flex: 0 1 60%;
  text-align: center;
}
@media (max-width: 900px) {
  #s1-2 .container .img {
    flex: 0 1 100%;
  }
}
#s1-2 .container .img img {
  width: 100%;
}
@media (max-width: 900px) {
  #s1-2 .container .img img {
    width: 80%;
  }
}
#s1-2 .container .txt {
  position: relative;
  flex: 0 1 40%;
  text-align: center;
  padding: 0 0 80px 0;
}
@media (max-width: 900px) {
  #s1-2 .container .txt {
    flex: 0 1 100%;
    padding: 0;
  }
}
#s1-2 .container .txt p {
  color: var(--color-lime);
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 48px;
  padding: 0 16px 0 48px;
}
@media (max-width: 900px) {
  #s1-2 .container .txt p {
    font-size: 18px;
    line-height: 28px;
    padding: 32px 16px 0;
  }
}
#s1-2 .container .txt p span {
  color: var(--color-brown-light);
}

#s1-3 {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
@media (max-width: 900px) {
  #s1-3 .container {
    padding-bottom: 48px;
  }
}
#s1-3 .container .title h2 {
  color: #212b2f;
  text-align: center;
}
@media (max-width: 900px) {
  #s1-3 .container .title h2 {
    font-size: 24px;
    font-weight: 400;
    padding: 32px 16px;
  }
}
#s1-3 .container .title h2 img {
  height: 80px;
  margin-right: 16px;
}
#s1-3 .container .audios {
  display: flex;
  flex-flow: row-reverse;
}
@media (max-width: 900px) {
  #s1-3 .container .audios {
    flex-direction: column;
    flex-flow: column;
  }
}
#s1-3 .container .audios article {
  position: relative;
}
#s1-3 .container .audios article:nth-of-type(1) {
  padding-bottom: 144px;
}
@media (max-width: 900px) {
  #s1-3 .container .audios article:nth-of-type(1) {
    padding-bottom: 16px;
  }
}
#s1-3 .container .audios article:nth-of-type(2) {
  padding-top: 144px;
}
@media (max-width: 900px) {
  #s1-3 .container .audios article:nth-of-type(2) {
    padding-top: 16px;
  }
}
#s1-3 .container .audios article .img {
  position: absolute;
  width: 220px;
}
@media (max-width: 900px) {
  #s1-3 .container .audios article .img {
    width: 180px;
  }
}
#s1-3 .container .audios article .info {
  padding: 80px 0 0 240px;
}
@media (max-width: 900px) {
  #s1-3 .container .audios article .info {
    padding: 128px 0 0 100px;
  }
}
#s1-3 .container .audios article .info .person {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
#s1-3 .container .audios article .info .person::before {
  content: "";
  display: block;
  width: 120px;
  border-top: 1px solid #212b2f;
  margin-bottom: 26px;
}
#s1-3 .container .audios article .info .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 26px;
}
#s1-3 .container .cta {
  position: absolute;
  right: 0px;
  bottom: -32px;
}
@media (max-width: 900px) {
  #s1-3 .container .cta {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 48px auto 24px;
  }
}

#s2 {
  background-color: #EDE4DA;
  display: grid;
  place-items: center;
  overflow: hidden;
}
#s2 .container h2 {
  color: var(--color-lime);
  text-align: center;
  padding: 0 64px 64px;
}
@media (max-width: 900px) {
  #s2 .container h2 {
    font-size: 26px;
    font-weight: 400;
    padding: 32px 16px;
  }
}
#s2 .container .content {
  display: flex;
}
@media (max-width: 900px) {
  #s2 .container .content {
    display: block;
  }
}
#s2 .container .content .desc {
  flex: 0 0 360px;
  padding: 40px 48px 0 0;
}
@media (max-width: 900px) {
  #s2 .container .content .desc {
    padding: 0 0 24px;
    position: relative;
  }
}
#s2 .container .content .desc p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  #s2 .container .content .desc p {
    display: block;
    font-size: 16px;
    line-height: 28px;
    padding: 16px 80px;
    text-align: center;
    margin-bottom: 16px;
  }
}
#s2 .container .content .desc .leaf {
  width: 180px;
}
@media (max-width: 900px) {
  #s2 .container .content .desc .leaf {
    position: absolute;
    width: 64px;
    top: 48px;
    left: 16px;
  }
}
#s2 .container .content .desc a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-lime);
  font-size: 20px;
  line-height: 32px;
  border: 1px solid var(--color-lime);
  border-radius: 10px;
  text-decoration: none;
  padding: 4px 16px;
  margin: 32px auto;
}
#s2 .container .content .desc a:hover {
  color: var(--color-white);
  background-color: var(--color-lime);
}
#s2 .container .content .video {
  flex: 1 1 auto;
  position: relative;
}
@media (max-width: 900px) {
  #s2 .container .content .video {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}
#s2 .container .content .video .video-container {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 56.25%;
}
@media (max-width: 900px) {
  #s2 .container .content .video .video-container {
    width: 100% !important;
  }
}
#s2 .container .content .video .video-container .video-iframe,
#s2 .container .content .video .video-container iframe,
#s2 .container .content .video .video-container object,
#s2 .container .content .video .video-container embed,
#s2 .container .content .video .video-container img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  #s2 .container .content .video .video-container .video-iframe {
    visibility: hidden;
  }
}
#s2 .container .content .video .video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 900px) {
  #s2 .container .content .video .video-box {
    pointer-events: unset;
  }
}
#s2 .container .content .video .video-box .dt {
  display: block;
}
@media (max-width: 900px) {
  #s2 .container .content .video .video-box .dt {
    display: none;
  }
}
#s2 .container .content .video .video-box .mb {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media (max-width: 900px) {
  #s2 .container .content .video .video-box .mb {
    display: block;
  }
}

@-webkit-keyframes scale-in-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}
#s3 {
  background-image: url(img/section-03/backgorund.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 900px) {
  #s3 {
    background-image: url(img/section-03/backgorund-mobi.jpg);
  }
}
#s3 .container {
  position: relative;
  padding: 200px 0 0;
}
@media (max-width: 900px) {
  #s3 .container {
    padding: 120px 0 0;
  }
}
#s3 .container .guide {
  position: absolute;
  background-color: var(--color-bg-yellow-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 64px;
  border-radius: 50%;
  text-align: center;
  width: 310px;
  height: 310px;
}
@media (max-width: 900px) {
  #s3 .container .guide {
    padding: 24px;
    width: 180px;
    height: 180px;
  }
}
#s3 .container .guide.clicked {
  display: none;
}
#s3 .container .guide img {
  width: 72px;
  margin: 0 0 8px;
}
@media (max-width: 900px) {
  #s3 .container .guide img {
    width: 48px;
    margin: 12px 0 8px;
  }
}
#s3 .container .guide p {
  font-size: 26px;
  line-height: 38px;
  color: var(--color-lime);
}
@media (max-width: 900px) {
  #s3 .container .guide p {
    font-size: 18px;
    line-height: 26px;
  }
}
#s3 .container .products {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 160px;
}
@media (max-width: 900px) {
  #s3 .container .products {
    margin-bottom: 440px;
    display: block;
  }
}
#s3 .container .products article {
  box-sizing: border-box;
  flex: 0 1 25%;
  background-color: var(--color-white);
  padding: 24px 24px 32px 24px;
  position: relative;
  box-shadow: 4px 4px 11px 4px rgba(0, 0, 0, 0.9333333333);
  border-top-right-radius: 48px;
  opacity: 0;
}
@media (max-width: 900px) {
  #s3 .container .products article {
    position: absolute;
    top: 0;
    left: 32px;
    width: max(280px, 100% - 64px);
    height: 400px;
    margin-inline: auto;
  }
}
#s3 .container .products article.show {
  opacity: 1;
}
@media (max-width: 900px) {
  #s3 .container .products article.show {
    opacity: 0;
  }
}
@media (max-width: 900px) {
  #s3 .container .products article.active {
    opacity: 1;
  }
}
#s3 .container .products article h3 {
  font-size: 26px;
  line-height: 34px;
  height: 68px;
  margin-bottom: 16px;
}
#s3 .container .products article .img-product {
  width: 90%;
  margin-bottom: 16px;
  border-radius: 20px;
}
#s3 .container .products article p {
  font-size: 15px;
  line-height: 26px;
  height: 78px;
}
#s3 .container .products article .bottom {
  position: absolute;
  bottom: -6px;
  right: 24px;
  width: 72px;
}
#s3 .container .leaves {
  display: flex;
  bottom: 0;
  left: 0;
  width: 100%;
}
#s3 .container .leaves .leaf {
  flex: 0 1 25%;
}
#s3 .container .leaves .leaf svg {
  width: 30%;
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse both;
  cursor: pointer;
  margin-left: 20%;
}
@media (max-width: 900px) {
  #s3 .container .leaves .leaf svg {
    width: 60%;
  }
}
#s3 .container .leaves .leaf svg .hidden {
  opacity: 0;
}
#s3 .container .leaves .leaf svg.clicked {
  -webkit-animation: none;
          animation: none;
}
#s3 .container .leaves .leaf svg.clicked .hidden {
  opacity: 1;
}
#s3 .container #waterer {
  position: absolute;
  top: 50%;
  opacity: 0;
}
#s3 .container #waterer svg {
  width: 200px;
}
@media (max-width: 900px) {
  #s3 .container #waterer svg {
    width: 120px;
  }
}

#s4 {
  background-image: url(img/section-04/bg.png), url(img/section-04/background.png);
  background-repeat: no-repeat, repeat;
  background-size: 100% 90%, auto auto;
  background-position: 100% 100%, center center;
  overflow: hidden;
  position: relative;
}
#s4 #s4-bg-line {
  position: absolute;
  top: 20%;
  right: 0;
  width: 100%;
  height: 80%;
}
#s4 h2 {
  position: relative;
  text-align: center;
  padding: 64px 64px 32px;
}
#s4 .note {
  position: relative;
  margin: 0 auto 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 8px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
#s4 .note::before, #s4 .note::after {
  content: "";
  display: block;
  position: relative;
  top: 50%;
  border-top: 1px solid var(--color-black);
}
#s4 .report {
  width: min(90%, 800px);
  margin: 0 auto;
}
#s4 .download {
  position: relative;
  display: block;
  width: 120px;
  margin-left: auto;
  transform-origin: 100% 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#s4 .download:hover {
  transform: scale(1.3);
}

#s5 {
  background: url(img/section-04/background.png);
}
#s5 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#s5 h2 span {
  font-family: "Times New Roman";
  font-style: italic;
  color: #75A072;
  font-size: 110px;
}
@media (max-width: 900px) {
  #s5 h2 span {
    font-size: 55px;
  }
}
#s5 .swiper-container {
  --swiper-navigation-size: 88px;
  padding: 64px;
  position: relative;
  background: url(img/section-05/article-bg@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  #s5 .swiper-container {
    padding: 40px;
    background: none;
  }
}
#s5 .swiper-container .swiper-button-prev-custom,
#s5 .swiper-container .swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
#s5 .swiper-container .swiper-button-prev-custom img,
#s5 .swiper-container .swiper-button-next-custom img {
  width: 54px;
}
@media (max-width: 900px) {
  #s5 .swiper-container .swiper-button-prev-custom img,
#s5 .swiper-container .swiper-button-next-custom img {
    width: 32px;
  }
}
#s5 .swiper-container .swiper-button-prev-custom {
  left: 0;
  right: auto;
}
@media (max-width: 900px) {
  #s5 .swiper-container .swiper-button-prev-custom {
    left: 8px;
  }
}
#s5 .swiper-container .swiper-button-next-custom {
  right: 0;
  left: auto;
}
@media (max-width: 900px) {
  #s5 .swiper-container .swiper-button-next-custom {
    right: 8px;
    width: 32px;
  }
}
#s5 .posts .post {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) {
  #s5 .posts .post {
    display: block;
    gap: 4px;
  }
}
#s5 .posts .post:nth-child(2) {
  flex-flow: row-reverse;
}
@media (max-width: 900px) {
  #s5 .posts .post:nth-child(2) .img {
    text-align: end;
  }
}
#s5 .posts .post .img {
  flex: 0 0 35%;
}
@media (max-width: 900px) {
  #s5 .posts .post .img img {
    width: 70%;
  }
}
#s5 .posts .post .txt {
  flex: 1 1 auto;
  padding: 0 24px 0 48px;
}
@media (max-width: 900px) {
  #s5 .posts .post .txt {
    flex: 0 1 100%;
    padding: 0 16px;
  }
}
#s5 .posts .post .txt .no {
  font-size: 24px;
  line-height: 48px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--color-green);
  font-family: "Rock Salt", cursive;
}
@media (max-width: 900px) {
  #s5 .posts .post .txt .no {
    font-size: 28px;
    line-height: 38px;
  }
}
#s5 .posts .post .txt .title {
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  #s5 .posts .post .txt .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
  }
}
#s5 .posts .post .txt .desc {
  font-size: 17px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  #s5 .posts .post .txt .desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}
#s5 .posts .post .txt .more {
  text-decoration: none;
  font-size: 18px;
  line-height: 32px;
  border-bottom: 1px solid var(--color-text);
  color: var(--color-text);
}
@media (max-width: 900px) {
  #s5 .posts .post .txt .more {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}

footer {
  background: url(img/section-04/background.png);
  text-align: center;
  padding: 16px 0;
}
footer .footer-logo {
  height: 48px;
}
footer p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  margin: 16px 0;
}/*# sourceMappingURL=style.css.map */