/* Start custom CSS for html, class: .elementor-element-63ece93 */@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: #121819;
  color: #fff;
  overflow-x: hidden;
  left: 0;
  right: 0;
}

.mt-1 {
  margin-top: 1%;
}

.mt-4 {
  margin-top: 4%;
}

.mb-3 {
  margin-bottom: 3%;
}

.mb-4 {
  margin-bottom: 4%;
}

.mb-1 {
  margin-bottom: 1em;
}

.container {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.parallax {
  transition: all 1s ease;
}

.block-header {
  text-align: center;
  margin-bottom: 2%;
}
.block-header .block-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}
.block-header .block-text {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5019607843);
}
.block-header .block-icon {
  font-size: 18px;
  color: #d85b1f;
}
.block-header .block-a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.block-header .block-a a {
  cursor: pointer;
  padding: 8px 16px;
  display: block;
  font-weight: 600;
}
.block-header .block-a a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1254901961);
}
.block-header .block-a .block-a-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1254901961);
}

.banner .loge {
  display: block;
  color: #fff;
  font-family: "Raleway", sans-serif;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5019607843);
  border-bottom: 1px solid #000;
  font-size: 24px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner .video_banner {
  position: relative;
}
.banner .video_banner .video_wrapper video {
  width: 100%;
  overflow-x: hidden;
}
.banner .video_banner .video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
}
.banner .video_banner .video-content .title {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
}

.photoWall {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.photoWall .box {
  margin-right: 16px;
  margin-top: 16px;
  width: calc((100% - 32px) / 3);
  position: relative;
  overflow: hidden;
}
.photoWall .box .text {
  background: rgba(18, 24, 25, 0.6);
  text-align: center;
  position: absolute;
  padding: 8%;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}
.photoWall .box .text .textP {
  transition: all 0.5s;
  padding-right: 0.5em;
  overflow-y: scroll;
  scrollbar-width: thin; /* 只有 auto 和 thin 兩屬性，若設置 thin 上面按鈕將不見 */
  scrollbar-color: rgba(255, 255, 255, 0.3137254902) rgba(18, 24, 25, 0.1254901961); /* 分別設置 thumb 和 track 的顏色 */
  /* 更改滾動卷軸樣式 */
}
.photoWall .box .text .textP::-webkit-scrollbar { /* 卷軸本身：必須設定此才能設定再設定其餘屬性 */
  width: 0.2em;
  border-radius: 10px; /* 若需要此效果，必須在 scrollbar-track 也設定，不然會被該區設置的給遮擋 */
}
.photoWall .box .text .textP::-webkit-scrollbar-thumb { /* 卷軸可以拉的地方 */
  background: rgba(255, 255, 255, 0.3137254902);
  border-radius: 10px;
}
.photoWall .box .text .textP::-webkit-scrollbar-track { /* 卷軸空出來的地方 */
  background: rgba(18, 24, 25, 0.1254901961);
  border-radius: 10px;
}
.photoWall .box .text .textP > * {
  margin-bottom: 8px;
  position: relative;
  top: 100%;
  transition: opacity 0.1s ease-in;
}
.photoWall .box .text .textP h3 {
  transition: top 0.3s ease;
}
.photoWall .box .text .textP h4 {
  transition: top 0.4s ease;
}
.photoWall .box .text .textP p {
  transition: top 0.5s ease-in;
}
.photoWall .box .text > * {
  margin-bottom: 8px;
  position: relative;
  top: 100%;
  transition: opacity 0.1s ease-in;
}
.photoWall .box .text h3 {
  font-size: 16px;
  font-weight: 600;
  transition: top 0.3s ease;
}
.photoWall .box .text h4 {
  font-size: 14px;
  line-height: 2;
  transition: top 0.4s ease;
}
.photoWall .box .text p {
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 4%;
  line-height: 2;
  opacity: 0.8;
  transition: top 0.5s ease-in;
}
.photoWall .box .text .line {
  display: flex;
  justify-content: center;
  transition: top 0.6s ease-in;
}
.photoWall .box .text .line .line-a {
  cursor: pointer;
  display: block;
  margin: auto 4px;
  width: 30px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
.photoWall .box .text .line .line-a:hover {
  background-color: #D85B1F;
}
.photoWall .box:hover .text {
  transform: scale(1);
  opacity: 1;
}
.photoWall .box:hover .text .textP > * {
  top: 0;
}
.photoWall .box:hover .text > * {
  top: 0;
}
.photoWall .box:nth-child(3n) {
  margin-right: 0;
}
.photoWall .box:last-child {
  margin-right: 0;
}

.bounce-mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.bounce-mask .bounce-DJ {
  border: 1px solid #fff;
  width: 80%;
  padding: 4%;
  position: relative;
  background: rgba(18, 24, 25, 0.6);
}
.bounce-mask .bounce-DJ .img {
  width: 20%;
}
.bounce-mask .bounce-DJ .close {
  cursor: pointer;
  position: absolute;
  padding: 10px;
  right: 10px;
  top: 10px;
}
.bounce-mask .bounce-DJ h3, .bounce-mask .bounce-DJ h4, .bounce-mask .bounce-DJ p {
  border-bottom: 1px solid #fff;
  line-height: 2;
}

.backgroundWall {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.backgroundWall .box {
  width: calc((100% - 16px) / 3);
  margin-bottom: 8px;
  height: 280px;
  background: url("../img/services_1.webp") no-repeat center/cover;
}
.backgroundWall .box .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: all 0.3s ease-out;
  background: rgba(255, 255, 255, 0.1254901961);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.backgroundWall .box .text .smallFont {
  opacity: 0.6;
  font-size: 12px;
}
.backgroundWall .box .text button {
  cursor: pointer;
  width: 60%;
  padding: 10px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0);
  border: 2px solid rgba(255, 255, 255, 0);
  color: #fff;
  transition: background-color 0.3s ease-in, color 0.5s ease-in, border 1s ease-out;
}
.backgroundWall .box .text button:hover {
  background: white;
  color: #000;
}
.backgroundWall .box .text:hover button {
  border: 2px solid #ffffff;
}
.backgroundWall .box a.text {
  cursor: pointer;
}
.backgroundWall .box:nth-child(2) {
  background-image: url("../img/services_2.webp");
}
.backgroundWall .box:nth-child(3) {
  background-image: url("../img/services_3.webp");
}
.backgroundWall .box:nth-child(4) {
  background-image: url("../img/services_4.webp");
}
.backgroundWall .box:nth-child(5) {
  background-image: url("../img/services_5.webp");
}
.backgroundWall .box:nth-child(6) {
  background-image: url("../img/services_6.webp");
}
.backgroundWall .box:hover .text {
  background: rgba(18, 24, 25, 0.6);
}

.gallery .galleryWall .row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.gallery .galleryWall .row .box {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}
.gallery .galleryWall .row .box .img {
  height: 100%;
}
.gallery .galleryWall .row .box .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .galleryWall .row .box .text {
  position: absolute;
  top: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transform: scale(0);
  transition: 0.3s;
}
.gallery .galleryWall .row .box .text p {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5019607843);
  opacity: 0;
  transform: translateX(-200%);
  transition: opacity 0.5s ease-out, transform 0.3s ease-out;
}
.gallery .galleryWall .row .box:hover .text {
  transform: scale(1);
  background: #121819;
}
.gallery .galleryWall .row .box:hover .text p {
  opacity: 1;
  transform: translateX(0%);
}
.gallery .galleryWall .row .flex-full {
  width: 100%;
}
.gallery .galleryWall .row .flex-2 {
  width: 74%;
}
.gallery .galleryWall .row .flex-1 {
  width: 24%;
}

.galleryMask_button {
  cursor: pointer;
}

.galleryMask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.galleryMask .close {
  cursor: pointer;
  padding: 10px;
  font-size: 36px;
  position: absolute;
  top: 3%;
  right: 10%;
}
.galleryMask .galleryMask_video {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.galleryMask .galleryMask_video iframe {
  position: absolute;
  width: 80%;
  height: 80%;
}

.about .bg {
  width: 100%;
}
.about .bg h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
}

.about-rwd {
  display: none;
}

.textTurn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
}
.textTurn .textArea {
  display: flex;
  overflow: hidden;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 2%;
  background: rgba(0, 0, 0, 0.5019607843);
  padding: 4%;
}
.textTurn .textArea .text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  flex: 0 0 100%;
  top: 0;
  transition: left 0.5s ease, opacity 0.6s ease;
  display: flex;
  align-items: center;
}
.textTurn .textArea .text[data-language=chinese] {
  left: 0;
}
.textTurn .textArea .text[data-language=english] {
  left: 100%;
}
.textTurn .buttonArea {
  margin-top: 1em;
  margin-bottom: 1em;
}
.textTurn .buttonArea .button {
  transition: all 0.5s ease;
  margin: 4px;
  padding: 8px;
  border-bottom: 3px solid rgba(216, 91, 31, 0);
}
.textTurn .buttonArea .button[data-language=chinese] {
  color: #fff;
  border-bottom-color: #D85B1F;
}

footer {
  color: rgba(255, 255, 255, 0.5019607843);
  padding: 8px;
  font-size: 10px;
  text-align: center;
}

.chooseBounce {
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chooseBounce .choose {
  z-index: 1;
  height: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.chooseBounce .choose::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 100%;
  background: #000000;
  left: 146%;
  opacity: 0.3;
}
.chooseBounce .choose .choose-a {
  cursor: pointer;
  width: 100px;
  height: 100%;
  position: relative;
  opacity: 0.5;
  transition: all 0.5s;
  background: url("../img/1110-l.webp") repeat top/cover;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(216, 91, 31, 0);
}
.chooseBounce .choose .choose-a:nth-child(2) {
  background-image: url("../img/1112-l.webp");
}
.chooseBounce .choose .choose-a:nth-child(3) {
  background-image: url("../img/1117-l.webp");
}
.chooseBounce .choose .choose-a:nth-child(4) {
  background-image: url("../img/1118-l.webp");
}
.chooseBounce .choose .choose-a:nth-child(5) {
  background-image: url("../img/1125-l.webp");
}
.chooseBounce .choose .choose-a::before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 4px;
  background: #000000;
  top: 50%;
  left: calc(100% + 4px);
  opacity: 0.3;
}
.chooseBounce .choose .choose-a::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #000000;
  background: #000000;
  transition: all 0.5s;
  top: 50%;
  left: 160%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
.chooseBounce .choose .choose-a:hover {
  opacity: 1;
  border: 4px solid #D85B1F;
}
.chooseBounce .choose .choose-a:hover .choose-target {
  opacity: 1;
}
.chooseBounce .choose .choose-a:hover::after {
  border: 4px solid #000000;
  background: #D85B1F;
}
.chooseBounce .choose .choose-active {
  opacity: 1;
  border: 4px solid #D85B1F;
}
.chooseBounce .choose .choose-active .choose-target {
  opacity: 1;
}
.chooseBounce .choose .choose-active::after {
  border: 4px solid #000000;
  background: #D85B1F;
}
.chooseBounce .bounce {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  transition: all 0.5s cubic-bezier(0, 1, 0.5, 1);
}
.chooseBounce .bounce .bounce-text {
  width: calc(100% - 400px);
  padding: 4%;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5019607843);
}
.chooseBounce .bounce .bounce-text .bounce-img {
  display: none;
}
.chooseBounce .bounce .bounce-text .wrap-title {
  position: relative;
  font-family: "Roboto", sans-serif;
}
.chooseBounce .bounce .bounce-text .wrap-title .date {
  font-size: 76px;
  opacity: 0.05;
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
}
.chooseBounce .bounce .bounce-text .wrap-title .title {
  position: absolute;
  font-size: 16px;
  opacity: 0.8;
  font-weight: 900;
  letter-spacing: 1px;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.chooseBounce .bounce .bounce-text .text, .chooseBounce .bounce .bounce-text .time {
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  opacity: 0.5;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.chooseBounce .bounce .bounce-text .time {
  font-size: 16px;
  font-weight: 600;
}
.chooseBounce .bounce .bounce-text .price {
  text-align: center;
  width: 10em;
  height: 10em;
  background: #D85B1F;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75px;
}
.chooseBounce .bounce .bounce-text .price .price-item {
  font-size: 36px;
  font-weight: 600;
}
.chooseBounce .bounce .bounce-text .price .price-item sup {
  font-size: 12px;
  vertical-align: super;
}
.chooseBounce .bounce .bounce-bg {
  width: 300px;
  height: inherit;
  background: url("../img/1110-r.webp") no-repeat center/cover;
}

.community {
  display: flex;
  flex-wrap: wrap;
}
.community .box {
  cursor: pointer;
  width: calc(20% - 20px);
  margin: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.community .box .icon {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: block;
  margin: 5px 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.community .box .icon .bi::before {
  position: relative;
  top: 1px;
}
.community .box .icon-facebook {
  background: #3b5998;
}
.community .box .icon-messenger {
  background: #1773EA;
}
.community .box .icon-instagram {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f09433", endColorstr="#bc1888",GradientType=1 );
}
.community .box .icon-line {
  background: #00BD00;
}
.community .box .icon-youtube {
  background: #c4302b;
}
.community .box .text {
  width: 5em;
}

.community-rwd {
  display: none;
}

@media (max-width: 1199px) {
  .container {
    width: 970px;
  }
  .backgroundWall .box {
    width: calc((100% - 8px) / 2);
  }
  .photoWall .box {
    cursor: pointer;
  }
  .photoWall .box .text {
    width: 100%;
    height: 100%;
  }
  .photoWall .box .text .textP {
    padding-right: 0em;
    overflow-y: hidden;
  }
  .photoWall .box .text .textP > * {
    margin-bottom: 0;
    line-height: 1;
  }
  .photoWall .box .text > * {
    margin-bottom: 0;
    line-height: 1;
  }
  .photoWall .box .text h4, .photoWall .box .text p, .photoWall .box .text .line {
    display: none;
  }
  .photoWall .box .text h3 {
    font-size: 12px;
  }
  .photoWall .boxHover .text {
    transform: scale(1);
    opacity: 1;
  }
  .photoWall .boxHover .text > * {
    top: 0;
  }
}
@media (max-width: 991px) {
  .container {
    width: 750px;
  }
  .gallery {
    overflow: hidden;
  }
  .gallery .galleryWall .row {
    display: block;
  }
  .gallery .galleryWall .row .box {
    max-height: 200px;
    margin-bottom: 1em;
  }
  .gallery .galleryWall .row .flex-1 {
    width: 0%;
  }
  .gallery .galleryWall .row .flex-2 {
    width: 100%;
  }
  .chooseBounce .bounce .bounce-text {
    width: calc(100% - 100px);
  }
  .chooseBounce .bounce .bounce-text .bounce-img {
    display: block;
    background: url("../img/bounce-img.jpg") no-repeat 50% 25%/contain;
    height: 200px;
  }
  .chooseBounce .bounce .bounce-text .time {
    margin-bottom: 80px;
  }
  .chooseBounce .bounce .bounce-text > * {
    background-color: rgba(0, 0, 0, 0.062745098);
  }
  .chooseBounce .bounce .bounce-bg {
    display: none;
  }
  .photoWall .box {
    margin-right: 8px;
    margin-top: 8px;
  }
  .banner .video_banner {
    overflow: hidden;
  }
  .banner .video_banner .video_wrapper {
    height: inherit;
  }
  .banner .video_banner .video_wrapper video {
    width: 100vw;
    height: auto;
  }
  .community .box {
    width: calc(33.3333333333% - 20px);
  }
  .community .box:nth-child(3n+1) {
    justify-content: flex-start;
  }
  .community .box:nth-child(3n) {
    justify-content: flex-end;
  }
  .about-desk, .community-desk {
    display: none;
  }
  .about-rwd {
    display: block;
  }
  .community-rwd {
    display: flex;
  }
}
@media (max-width: 767px) {
  .banner .loge {
    font-size: 24px;
    background: rgba(18, 24, 25, 0.6);
    border-bottom: 1px solid #121819;
    padding: 6px 15px;
  }
  .banner .video_banner {
    height: 50vh;
    overflow: hidden;
  }
  .banner .video_banner .video_wrapper {
    height: inherit;
  }
  .banner .video_banner .video_wrapper video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100vw;
    height: inherit;
  }
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .photoWall .box {
    width: calc((100% - 8px) / 2);
  }
  .photoWall .box:nth-child(3n) {
    margin-right: 8px;
  }
  .photoWall .box:nth-child(2n) {
    margin-right: 0;
  }
  .backgroundWall .box {
    margin: 8px;
    width: 100%;
    max-height: 240px;
    margin: 0;
    margin-bottom: 3em;
  }
  .backgroundWall .box .text {
    background: rgba(18, 24, 25, 0);
  }
  .textTurn {
    padding: 0 20px;
  }
  .textTurn .buttonArea {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
  }
  .textTurn .textArea .text p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .banner .video_banner .video-content .title {
    font-size: 16px;
  }
  .chooseBounce {
    height: 600px;
    padding: 0;
    position: relative;
    left: -10px;
  }
  .chooseBounce .bounce .bounce-text .wrap-title .date {
    font-size: 48px;
  }
  .chooseBounce .choose::before {
    width: 4px;
    height: 100%;
    opacity: 1;
  }
  .chooseBounce .choose .choose-a {
    width: 20px;
    height: 20px;
    background: #000000;
    border: 4px solid #000000;
    opacity: 1;
    transform: translateX(110%);
  }
  .chooseBounce .choose .choose-a::before {
    display: none;
  }
  .chooseBounce .choose .choose-a::after {
    display: none;
  }
  .chooseBounce .choose .choose-a:hover {
    background: #D85B1F;
    border: 4px solid #000000;
  }
  .chooseBounce .choose .choose-active {
    opacity: 1;
    background: #D85B1F;
  }
  .chooseBounce .bounce .bounce-text {
    width: calc(100% - 30px);
  }
  .chooseBounce.container {
    padding: 0;
  }
  .about .bg h2 {
    font-size: 24px;
  }
  .community .box {
    width: calc(20% - 10px);
    margin: 10px 5px;
  }
  .community .box:nth-child(3n+1) {
    justify-content: center;
  }
  .community .box:nth-child(3n) {
    justify-content: center;
  }
  .community .box .text {
    display: none;
  }
}/*# sourceMappingURL=all.css.map *//* End custom CSS */