@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
:root {
  --main-color: #ff5532;
  --main-text: #fff;
  --H1: 2em;
  --H2: 1.5em;
  --H3: 1.17em;
  --H4: 1em;
  --display-large: clamp(54px, calc(10px + 7.25vw), 170px);
}

body .grid, body .is-layout-grid {
  display: grid;
  gap: 24px;
}
body .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  body .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  body .grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  body .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  body .col-span-1 {
    grid-column: span 1/span 1;
  }
  body .col-span-2 {
    grid-column: span 2/span 2;
  }
  body .col-span-3 {
    grid-column: span 3/span 3;
  }
  body .col-span-4 {
    grid-column: span 4/span 4;
  }
  body .col-span-5 {
    grid-column: span 5/span 5;
  }
  body .col-span-6 {
    grid-column: span 6/span 6;
  }
  body .col-span-7 {
    grid-column: span 7/span 7;
  }
  body .col-span-8 {
    grid-column: span 8/span 8;
  }
  body .col-span-9 {
    grid-column: span 9/span 9;
  }
  body .col-span-10 {
    grid-column: span 10/span 10;
  }
  body .col-span-11 {
    grid-column: span 11/span 11;
  }
  body .col-span-12 {
    grid-column: span 12/span 12;
  }
  body .col-end-13 {
    grid-column-end: 13;
  }
}
@media screen and (max-width: 767px) {
  body .grid-cols-m-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  body .col-span-m-1 {
    grid-column: span 1/span 1;
  }
  body .col-span-m-2 {
    grid-column: span 2/span 2;
  }
  body .col-span-m-3 {
    grid-column: span 3/span 3;
  }
  body .col-span-m-4 {
    grid-column: span 4/span 4;
  }
  body .col-span-m-5 {
    grid-column: span 5/span 5;
  }
  body .col-span-m-6 {
    grid-column: span 6/span 6;
  }
  body .col-span-m-7 {
    grid-column: span 7/span 7;
  }
  body .col-span-m-8 {
    grid-column: span 8/span 8;
  }
  body .col-span-m-9 {
    grid-column: span 9/span 9;
  }
  body .col-span-m-10 {
    grid-column: span 10/span 10;
  }
  body .col-span-m-11 {
    grid-column: span 11/span 11;
  }
  body .col-span-m-12 {
    grid-column: span 12/span 12;
  }
}

.btn {
  position: relative;
}
.btn svg {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  transform-origin: center;
}

.ddg-block h2.section-title {
  color: var(--main-color);
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  margin-bottom: 140px;
}
.ddg-block .circle-trans {
  position: relative;
}
.ddg-block .btn-circle.in {
  transform: scale(1);
  opacity: 1;
}
.ddg-block .btn-circle {
  transform: scale(0.75);
  transform-origin: center;
  opacity: 0;
  position: absolute;
  top: 40%;
  left: 40%;
  width: 150px;
  height: 150px;
  border-radius: 100px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  overflow: hidden;
}
.ddg-block .btn-circle span {
  position: relative;
  z-index: 2;
}
.ddg-block .btn-circle:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--main-color);
}

.switchto-ffffff .btn-capsule, .switchto-fff .btn-capsule {
  --main-text: #fff;
}

.btn-capsule {
  --btn-padding-top: 20px;
  --btn-padding-side: 36px;
  --btn-font: 60px;
  --btn-line-height: 83px;
  --btn-width: 250px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1440px;
  margin: auto;
}
.btn-capsule .btn-wrap {
  padding: var(--btn-padding-top) var(--btn-padding-side);
  min-width: var(--btn-width);
  position: relative;
  display: block;
  border-radius: 100px;
  border: 2px solid;
  border-color: var(--main-color);
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-capsule .btn-wrap span {
  white-space: nowrap;
  text-transform: uppercase;
  font-size: var(--btn-font);
  line-height: var(--btn-line-height);
  font-weight: 400;
  padding: 0;
  pointer-events: none;
  text-align: center;
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-capsule .arrow {
  position: absolute;
  top: 50%;
  right: var(--btn-padding-side);
  transform: translateY(-50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 48px;
}
.btn-capsule svg {
  margin-left: -200%;
  opacity: 0;
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 0s;
}
@media (hover: hover) {
  .btn-capsule .btn-wrap:hover {
    min-width: 100%;
    background-color: var(--main-color);
  }
  .btn-capsule .btn-wrap:hover span {
    color: #fff;
  }
  .btn-capsule .btn-wrap:hover svg {
    margin-left: 0;
    opacity: 1;
    transition-delay: 0.25s;
  }
}

.btn-arrow {
  --btn-font: 28px;
  --main-color: #ff5532;
  --main-text: #fff;
  font-size: var(--btn-font);
  font-weight: 400;
  line-height: 38.92px;
  --line-size: 0;
}
.btn-arrow.align-center a {
  justify-content: center;
}
.btn-arrow a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}
.btn-arrow .link-txt {
  background: linear-gradient(hsl(14, 100%, 50%), hsl(14, 100%, 50%)) 0 100% no-repeat;
  background-size: var(--line-size) 0.75px;
  display: inline;
  transition: background-size 0.5s;
  pointer-events: none;
}
.btn-arrow svg {
  transform-origin: left bottom;
}

@media (hover: hover) {
  .btn-arrow:hover {
    --line-size: 100%;
  }
  .btn-arrow:hover svg {
    transform: translate(5px, -3px) scale(1.025);
    transition-delay: 0.1s;
  }
}
.cursor {
  position: fixed;
  cursor: none;
  z-index: 9999999;
  -webkit-transition: transform 0.2s linear, opacity 0.1s linear;
  transition: transform 0.2s linear, opacity 0.1s linear;
  transform: scale(0.5);
  background-image: url("../../img/icon-arrow-top.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 80px;
  height: 80px;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.cursor.in {
  transform: scale(1);
  opacity: 1;
}
.cursor.dragging {
  pointer-events: all;
}

.cursor-trans {
  position: relative;
}
.cursor-trans a {
  cursor: none;
}

.reel-player {
  --nav-click-top:15px;
  --nav-click-left: calc(100vw - 80px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  transition-delay: 0.125s;
  visibility: hidden;
  opacity: 0;
}
.reel-player.playing {
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0 !important;
  left: 0 !important;
  background-color: #000;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.reel-player.playing .btn-turn-off {
  transform: rotate(45deg);
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0.25s, transform 0.3s ease 0.25s;
  transition: opacity 0.25s ease 0.25s, transform 0.3s ease 0.25s;
}
.reel-player .btn-turn-off {
  position: fixed;
  top: var(--nav-click-top);
  left: var(--nav-click-left);
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 99;
  transform: rotate(0deg);
  opacity: 0;
  -webkit-transition: opacity 0.1s ease, transform 0.1s ease;
  transition: opacity 0.1s ease, transform 0.1s ease;
  transition-delay: 0s;
}
.reel-player .btn-turn-off:after, .reel-player .btn-turn-off:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 45px;
  height: 3px;
  background-color: var(--main-color);
  transform: translate(-50%, -50%) rotate(0deg);
}
.reel-player .btn-turn-off:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.reel-player img {
  width: 100%;
}

.kv-block {
  min-height: 750px;
  height: 100vh;
  padding: 235px 0 0;
}
.kv-block.playing .btn-circle.cursor {
  display: none;
}
.kv-block .block-wrap {
  padding-right: 500px;
}
.kv-block .kv-reel {
  width: 750px;
  height: 750px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  cursor: none;
}
.kv-block .kv-reel .image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.kv-block .kv-reel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.kv-block .kv-reel .btn-play-mobile {
  width: 51px;
  height: 51px;
  border-radius: 100%;
  border: 1px solid #fff;
  font-size: 14px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.kv-block .kv-txt {
  position: relative;
  z-index: 9;
  color: var(--main-color);
  padding-top: 47px;
  pointer-events: none;
}
.kv-block .kv-txt .btn-arrow {
  pointer-events: all;
  width: 60%;
}
.kv-block .kv-txt h2 {
  font-size: 170px;
  font-weight: 400;
  line-height: 180px;
  margin: 0 0 70px;
}
.kv-block .kv-txt p {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin: 0 0 45px;
  max-width: 830px;
}

main {
  position: relative;
}

.head-banner.expertise-head {
  position: relative;
}
.head-banner.expertise-head.in .txt-wrap .top .caption,
.head-banner.expertise-head.in .txt-wrap .top h2 span {
  transform: translateX(0) !important;
  opacity: 1 !important;
}
.head-banner.expertise-head .block-wrap {
  position: relative;
  max-width: 2200px;
  margin: auto;
}
.head-banner.expertise-head .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.head-banner.expertise-head .image-wrap .image-item {
  position: absolute;
  display: block;
  width: 500px;
  padding-top: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.65s ease;
  transition: opacity 0.65s ease;
}
.head-banner.expertise-head .image-wrap .image-item.init {
  opacity: 1;
}
.head-banner.expertise-head .image-wrap .image-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 100%;
}
.head-banner.expertise-head .image-wrap .image-item.space {
  width: 465px;
  height: 465px;
  padding: 0;
  border: 1px solid var(--main-color);
  top: max(115vh, 1200px);
  right: 473px;
}
.head-banner.expertise-head .image-wrap .image-item:first-child {
  width: 540px;
  padding-top: 540px;
  top: -150px;
  left: 48%;
}
.head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
  width: 704px;
  padding-top: 704px;
  top: 580px;
  right: -10px;
  z-index: 2;
}
.head-banner.expertise-head .image-wrap .image-item:nth-child(3) {
  width: 399px;
  padding-top: 399px;
  top: max(100vh, 1000px);
  left: 113px;
}
.head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
  width: 320px;
  padding-top: 320px;
  top: max(150vh, 1100px);
  left: max(10vw, 318px);
}
.head-banner.expertise-head .txt-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  max-width: 1570px;
  margin: auto;
}
.head-banner.expertise-head .txt-wrap .section {
  width: 100%;
  height: 100vh;
  min-height: 1160px;
  display: flex;
  flex-direction: column;
  padding-top: 28vh;
}
.head-banner.expertise-head .txt-wrap h2 {
  font-size: 170px;
  font-weight: 400;
  line-height: 180px;
  color: var(--main-color);
}
.head-banner.expertise-head .txt-wrap h2 span {
  display: block;
  transform: translateX(-15%);
  opacity: 0;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.15s;
}
.head-banner.expertise-head .txt-wrap h2 span:nth-child(2) {
  margin-top: 30px;
  float: right;
  transform: translateX(15%);
  opacity: 0;
}
.head-banner.expertise-head .txt-wrap .caption {
  width: 55%;
  max-width: 800px;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}
.head-banner.expertise-head .txt-wrap .top .caption {
  max-width: 705px;
  width: 50%;
  margin-top: 72px;
  transform: translateX(-15%);
  opacity: 0;
  -webkit-transition: transform 0.65s ease, opacity 0.5s ease;
  transition: transform 0.65s ease, opacity 0.5s ease;
  transition-delay: 0.35s;
}
.head-banner.expertise-head .txt-wrap .bottom {
  align-items: flex-end;
  padding-top: 50vh;
}
.head-banner.people-banner {
  max-width: 100%;
  height: 150vh;
}
.head-banner.people-banner .clip-mask {
  --trans-origin-x: 65%;
  --trans-origin-y: 50%;
  --rotation-angle: 0deg;
  --intro-opacity: 1;
  height: 200%;
  overflow: hidden;
  pointer-events: none;
}
.head-banner.people-banner .clip-mask svg {
  max-width: 2000px;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: -99999px;
  left: -99999px;
}
.head-banner.people-banner .clip-mask svg clipPath {
  transform: rotate(var(--rotation-angle));
  transform-origin: var(--trans-origin-x) var(--trans-origin-y);
}
.head-banner.people-banner .clip-mask .clip-path-locate {
  clip-path: url(#dynamic-clip);
  object-fit: cover;
  height: 100%;
}
.head-banner.people-banner .block-wrap {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
}
.head-banner.people-banner .block-wrap .sticky-box {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 1080px;
  height: 125vh;
  width: 100%;
}
.head-banner.people-banner .block-wrap .sticky-box .image-cover {
  z-index: -100;
  width: 100%;
  height: 100vh;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.head-banner.people-banner .block-wrap .sticky-box video {
  object-fit: cover;
  z-index: -100;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.head-banner.people-banner .block-wrap .sticky-box.intro {
  opacity: var(--intro-opacity);
  z-index: 9;
}
.head-banner.people-banner .block-wrap .sticky-box.intro:after {
  content: "";
  opacity: var(--intro-opacity);
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.head-banner.people-banner .block-wrap .sticky-box.square {
  z-index: 5;
}
.head-banner.people-banner .text-wrap {
  color: #fff;
  position: absolute;
  top: 45%;
  left: calc((100% - 1440px) / 2);
  transform: translateY(-50%);
  z-index: 9;
  width: 50%;
  max-width: 725px;
}
.head-banner.people-banner .text-wrap h2 {
  font-size: 110px;
  font-weight: 400;
  line-height: 130px;
  min-width: 660px;
}
.head-banner.people-banner .text-wrap .sub {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin-top: 50px;
  max-width: 680px;
}

.contact-head {
  background-image: var(--banner-back);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 864px;
  color: #fff;
  padding-left: min(240px, 10%);
  padding-top: 15%;
}
.contact-head .block-wrap {
  margin: 0;
}
.contact-head p {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
}
.contact-head p br {
  display: none;
}
.contact-head h2 {
  font-size: 170px;
  font-weight: 400;
  line-height: 180px;
  margin-bottom: 15px;
}

.heading-block .block-wrap:not(.grid) {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.heading-block .sub {
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}
.heading-block h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  color: var(--main-color);
}
.heading-block.vertical .sub {
  font-weight: 400;
  width: 60%;
}
.heading-block.vertical .block-wrap {
  flex-direction: column;
}
.heading-block.vertical h2 {
  margin-bottom: 60px;
}
.heading-block.vertical.large .block-wrap {
  max-width: 1680px;
}
.heading-block.vertical.large h2 {
  text-indent: 1.65em;
  font-size: var(--display-large);
  font-weight: 400;
  line-height: 180px;
  margin: 0;
}
.heading-block.vertical.large h2 span {
  display: block;
}
.heading-block.heading-horiz .sub {
  text-transform: uppercase;
  margin-top: 11px;
}

.works-block {
  --portrait-height: 868px;
  --landscape-height: 720px;
  --landscape-sm-height: 480px;
}
.works-block h3 {
  font-size: 44px;
  font-weight: 400;
  line-height: 54px;
  margin-bottom: 15px;
}
.works-block p {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
.works-block .thumbnail {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}
.works-block .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  -webkit-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  transform: translate(-50%, -50%);
}
.works-block .work-item a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media (hover: hover) {
  .works-block .work-item .thumbnail:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transition: transform 0.75s ease;
    transition: transform 0.75s ease;
  }
}
.works-block.single-block .thumbnail {
  padding-top: 50%;
  max-height: var(--landscape-height);
}
.works-block.double-block .block-wrap, .works-block.triple-block .block-wrap {
  align-items: center;
}
.works-block.double-block .thumbnail, .works-block.triple-block .thumbnail {
  padding-top: 67.798%;
  max-height: var(--landscape-sm-height);
}
.works-block.double-block .work-item:not(.portrait-right .work-item):first-child .thumbnail {
  padding-top: 148.123%;
  height: var(--portrait-height);
}
.works-block.double-block.portrait-right .work-item:nth-child(2) .thumbnail {
  padding-top: 148.123%;
  height: var(--portrait-height);
}
.works-block.triple-block .works-item-col {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  row-gap: 160px;
}
.works-block.triple-block .works-item-col .work-item {
  width: 100%;
}
.works-block.triple-block .work-item:not(.works-item-col .work-item) .thumbnail {
  padding-top: 148.123%;
  max-height: var(--portrait-height);
}

.image-banner {
  position: relative;
}
.image-banner ::selection {
  color: #ff5532;
  background: #fff;
}
.image-banner.splash {
  padding: 250px 0;
  overflow: hidden;
}
.image-banner.splash .ribbon {
  position: relative;
  z-index: 1;
  display: block;
  height: 100vh;
  min-height: 1080px;
  width: 100%;
  background-color: var(--theme-color);
  -webkit-transition: background-color 0.45s ease-in;
  transition: background-color 0.45s ease-in;
}
.image-banner.splash .image-item {
  position: absolute;
  display: block;
  width: 500px;
  height: 500px;
  overflow: hidden;
}
.image-banner.splash .image-item img {
  transform-origin: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-banner.splash .image-item:first-child {
  width: 500px;
  height: 500px;
  top: -15px;
  left: 240px;
}
.image-banner.splash .image-item:nth-child(2) {
  width: 300px;
  height: 300px;
  top: 175px;
  left: 1190px;
}
.image-banner.splash .image-item:nth-child(3) {
  width: 250px;
  height: 250px;
  top: 840px;
  left: 92px;
}
.image-banner.splash .image-item:nth-child(4) {
  width: 400px;
  height: 400px;
  top: 1090px;
  left: 460px;
}
.image-banner.splash .image-item:nth-child(5) {
  width: 500px;
  height: 500px;
  top: 700px;
  left: 1420px;
}
.image-banner.splash .image-item.space {
  background-color: #fff;
  width: 32px;
  height: 32px;
  top: 430px;
  left: 1680px;
}
.image-banner.splash .image-wrap, .image-banner.splash .txt-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center;
  -webkit-transition: all 0.45s ease-in;
  transition: all 0.45s ease-in;
}
.image-banner.splash.in .image-wrap, .image-banner.splash.in .txt-wrap {
  opacity: 1;
  transform: scale(1);
}
.image-banner.splash.in .txt-wrap {
  transform: translate(-50%, -50%) scale(1);
}
.image-banner.splash .image-wrap {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.image-banner.splash .image-wrap .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1920px;
  height: 100%;
  margin: auto;
}
.image-banner.splash .txt-wrap {
  z-index: 9;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  transform: translate(-50%, -50%);
  max-width: 1920px;
  width: 100%;
  margin: auto;
}
.image-banner.splash .txt-wrap a {
  color: #fff;
}
.image-banner.splash .txt-wrap .btn-arrow svg {
  width: 43px;
}
.image-banner.splash .txt-wrap .btn-arrow .link-txt {
  background: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%)) 0 100% no-repeat;
  background-size: var(--line-size) 0.75px;
}
.image-banner.splash .txt-wrap p {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 85px;
}
.image-banner.splash .txt-wrap h3 {
  font-size: 110px;
  font-weight: 400;
  line-height: 130px;
  text-align: center;
  margin-bottom: 60px;
}

.ddg-block.testimonial {
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
}

.post-list img {
  object-fit: cover;
}
.post-list .block-wrap {
  gap: 110px 24px;
}
.post-list .empty {
  --empty-color: #ececec;
}
.post-list .empty a {
  cursor: unset;
}
.post-list .empty.featured .btn-capsule {
  height: 100px;
  background-color: var(--empty-color);
}
.post-list .empty.featured .display-title {
  height: 140px;
}
.post-list .empty.featured .excerpt {
  height: 3em;
}
.post-list .empty .entry-meta {
  width: 100%;
}
.post-list .empty .thumbnail {
  background-color: var(--empty-color);
}
.post-list .empty .display-title {
  width: 100%;
  height: 1.17em;
  background-color: var(--empty-color);
}
.post-list article.featured a {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  height: 100%;
}
.post-list article.featured .featured-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(50% - 24px);
  height: 100%;
}
.post-list article.featured .entry-image {
  width: 50%;
  padding-top: 50%;
  margin: 0;
}
.post-list article.featured .btn-capsule {
  margin: 0;
  width: 100%;
  justify-content: flex-start;
}
.post-list article.featured .btn-capsule span {
  transition: unset;
}
.post-list article.featured .title {
  font-size: 54px;
  line-height: 72px;
}
.post-list article .entry-image {
  margin-bottom: 30px;
  position: relative;
  display: flex;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.post-list article .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  -webkit-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.post-list article .entry-image .blank-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  -webkit-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  color: #cecece;
}
.post-list article .entry-meta {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.post-list article .entry-meta .term {
  display: block;
  margin-bottom: 15px;
}
.post-list article .excerpt {
  margin-top: 40px;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}
.post-list article .title {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.post-list.work article .entry-image {
  padding-top: 66.66%;
  margin-bottom: 25px;
}
.post-list.work article .entry-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-list.work article .excerpt {
  font-size: 24px;
  line-height: 30px;
  color: var(--main-color);
}
.post-list.work article h3 {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 15px;
}
.post-list .load-more.trigger {
  display: block;
  width: 600px;
  height: 132px;
  padding: 23px;
  border: 2px solid var(--main-color);
  border-radius: 100px;
  margin: 190px auto 0;
  text-align: center;
  color: var(--main-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-weight: 400;
  font-size: 60px;
  line-height: 83px;
  text-transform: uppercase;
}
.post-list .load-more.trigger span {
  pointer-events: none;
}
.post-list .load-more.trigger .loader {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.post-list .load-more.trigger.loading span {
  visibility: hidden;
}
.post-list .load-more.trigger.loading .loader {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) {
  .post-list .load-more.trigger:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .post-list .btn-capsule:hover .btn-wrap {
    color: var(--main-text);
    background-color: var(--main-color);
  }
  .post-list article:hover .entry-image img {
    transform: translate(-50%, -50%) scale(1.08);
    -webkit-transition: transform 0.35s ease;
    transition: transform 0.35s ease;
  }
}

.carousel-block.content-carousel .item-link {
  margin: 70px auto 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 39px;
}
.carousel-block.content-carousel .item-link svg {
  width: 43px;
  height: 43px;
}
.carousel-block.content-carousel .item-link a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 50px;
}
.carousel-block.content-carousel .entry-content {
  cursor: none !important;
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
}
.carousel-block.content-carousel .entry-content p {
  margin-bottom: 1em;
}
.carousel-block.content-carousel .entry-content h4 {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 60px;
}
.carousel-block.content-carousel .entry-content .splide__pagination {
  top: -40px;
}
.carousel-block.content-carousel .entry-content .splide__track {
  padding-left: calc((100% - 1440px) / 2 + 245px) !important;
  overflow: visible;
}
.carousel-block.content-carousel .entry-content .single-item {
  max-width: 950px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  vertical-align: top;
  padding-right: 245px;
  user-select: none;
}
.carousel-block.with-content a {
  color: #f0f0f0;
}
.carousel-block.with-content .block-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.carousel-block.with-content .entry-content {
  grid-column: 1/5;
  justify-self: start;
}
.carousel-block.with-content .entry-content h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 54px;
  margin: 0 0 35px;
}
.carousel-block.with-content .entry-content p {
  margin: 0;
}
.carousel-block.with-content .entry-images {
  grid-column: 6/13;
  justify-self: end;
}
.carousel-block.with-content .entry-images li {
  max-width: 830px;
}
.carousel-block.with-content .entry-images img {
  width: 100%;
}
.carousel-block.with-content .entry-images .caption {
  display: block;
  opacity: 0;
  margin-top: 13px;
  font-size: 20px;
  line-height: 30px;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.carousel-block.with-content .entry-images .is-visible .caption {
  opacity: 1;
}
.carousel-block.with-content .entry-images .splide__pagination {
  top: unset;
  bottom: 70px;
  width: calc(100% - 52px);
  margin: auto;
  gap: 26px;
}
.carousel-block.with-content .entry-images .splide__pagination .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
}
.carousel-block.with-content .entry-images .splide__pagination .splide__pagination__page.is-active {
  background: rgb(255, 255, 255);
}
.carousel-block.image-carousel {
  margin-top: -300px;
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-width: none;
}
.carousel-block.image-carousel .circle-trans {
  margin: 150px 0;
  padding-bottom: 77px;
}
.carousel-block.image-carousel .entry-head {
  position: absolute;
  bottom: 0;
  left: -25%;
  z-index: 9;
  pointer-events: none;
}
.carousel-block.image-carousel .entry-head h2 {
  font-size: 128px;
  line-height: 170px;
  white-space: nowrap;
  margin-bottom: 0;
  font-weight: 400;
  color: #ff5532;
}
.carousel-block.image-carousel .image-slide {
  cursor: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: fit-content;
  will-change: transform;
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-width: none;
}
.carousel-block.image-carousel .single-item {
  position: relative;
  width: 834px;
  height: 1150px;
  overflow: hidden;
}
.carousel-block.image-carousel .single-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-block.image-carousel .single-item ::selection {
  background-color: transparent;
}
.carousel-block.image-carousel .single-item .image-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-block.image-carousel .single-item.square {
  width: 989px;
  padding-left: 65px;
  padding-right: 90px;
}
.carousel-block.image-carousel .single-item.square .image-inner {
  width: 834px;
  max-height: 834px;
  top: 45%;
  left: 65px;
  transform: translateY(-50%);
}
.carousel-block.image-carousel .single-item.portrait:first-child {
  width: 828px;
  padding-left: 148px;
}
.carousel-block.image-carousel .single-item.portrait:first-child .image-inner {
  left: 148px;
}
.carousel-block.image-carousel .single-item.portrait {
  width: 770px;
  padding-right: 100px;
  padding-left: 90px;
}
.carousel-block.image-carousel .single-item.portrait .image-inner {
  width: 580px;
  max-height: 870px;
  left: 90px;
}
.carousel-block.image-carousel .single-item.landscape {
  width: 950px;
  padding-right: 65px;
  padding-left: 100px;
}
.carousel-block.image-carousel .single-item.landscape .image-inner {
  width: 785px;
  max-height: 524px;
  top: unset;
  bottom: 0;
  left: 100px;
}

[lang=zh-hant] .carousel-block.with-content .entry-content h3 {
  margin: 0 0 80px;
}

.icon-block .block-wrap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 160px 23px;
}
.icon-block h4 {
  font-size: 50px;
  font-weight: 400;
  line-height: 54px;
  margin-bottom: 40px;
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.icon-block ul {
  line-height: 34px;
}
.icon-block.with-svg svg path {
  opacity: 0;
  -webkit-transition: all 0.42s ease-in;
  transition: all 0.42s ease-in;
}
.icon-block.with-svg svg path:nth-child(2n+1) {
  transition-delay: 0.4s;
}
.icon-block.with-svg svg path:nth-child(3n+1) {
  transition-delay: 0.55s;
}
.icon-block.with-svg svg path:nth-child(4n+1) {
  transition-delay: 0.75s;
}
.icon-block.with-svg .in svg path {
  opacity: 1;
}
.icon-block.with-svg .after-ani svg path {
  transition-delay: 0.2s;
}
.icon-block .single-block {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}
.icon-block.double .single-block {
  grid-column: span 3/span 3;
}
.icon-block.triple .single-block {
  grid-column: span 2/span 2;
}
.icon-block.top-image .block-wrap {
  gap: 100px 88px;
}
.icon-block.top-image .single-block {
  flex-direction: column;
}

@media screen and (max-width: 1445px) {
  [lang=en-US] .icon-block h4 {
    font-size: 40px;
  }
}
.image-list-block h2 {
  color: var(--main-color);
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  margin-bottom: 140px;
}
.image-list-block h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  margin: 22px 0 6px;
}
.image-list-block .block-wrap {
  gap: 82px 53px;
  max-width: 1920px;
  margin: auto;
  align-items: start;
}
.image-list-block .single-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-list-block.ddg-our-people .single-image {
  color: #ff5532;
}
.image-list-block.client-logo .block-wrap {
  gap: 96px 24px;
}
.image-list-block.client-logo .single-image {
  align-items: center;
}
.image-list-block.client-logo img {
  max-width: 80%;
}

/** Collapse list **/
.collapse-list .collapse-item:last-child {
  border-bottom: 0;
}
.collapse-list .collapse-item {
  border-style: solid;
  border-color: #ff5532;
  border-width: 2px 0 0;
  margin-top: -1px;
  padding: 50px 0;
}
.collapse-list .collapsible {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  font-size: 44px;
  line-height: 54px;
  color: #ff5532;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.collapse-list .collapsible span {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.collapse-list .collapsible svg {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  transform-origin: center;
}
.collapse-list .collapsible.active {
  padding-bottom: 52px;
}
.collapse-list .collapsible.active svg {
  transform: rotate(90deg);
}
.collapse-list .c-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/** Collapse list **/
.theme-switch .image-list-block .single-image {
  filter: invert(100%);
}
.theme-switch.in .single-image {
  filter: invert(0);
}

.contact-info {
  padding: 168px 0;
}
.contact-info .contact-item h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  margin-bottom: 60px;
}
.contact-info .contact-item p {
  padding-right: 180px;
  margin: 0;
}
.contact-info .contact-item p a {
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .contact-info .contact-item p a:hover {
    color: #ff5532;
  }
}
.contact-info .contact-item .detail {
  margin-top: 20px;
  font-size: 32px;
  line-height: 44px;
}

.ddg-what-shapes-us {
  max-width: 1680px;
  margin: auto;
  gap: 190px;
}
.ddg-what-shapes-us .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ddg-what-shapes-us .text-col h2 {
  font-weight: 400;
  font-size: 64px;
  line-height: 74px;
}
.ddg-what-shapes-us .image-col {
  flex-basis: 760px;
  flex-grow: 0;
}

.ddg-full-width-image {
  position: relative;
  height: 100vh;
  max-height: 864px;
  overflow: hidden;
}
.ddg-full-width-image .wp-block-image {
  width: 100%;
  height: 100%;
}
.ddg-full-width-image figure {
  width: 100%;
  height: 100%;
}
.ddg-full-width-image figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-width: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ddg-link-box-group {
  gap: 24px;
}

.ddg-link-box {
  padding: 40px 36px;
  border: 2px solid var(--main-color);
  min-height: 480px;
  justify-content: space-between;
}
.ddg-link-box p {
  max-width: 75%;
  font-size: 44px;
  line-height: 54px;
  color: var(--main-color);
}
.ddg-link-box .ddg-block.btn-arrow {
  margin: 0;
}
.ddg-link-box .ddg-block.btn-arrow svg {
  width: 43px;
  height: 43px;
}

@media screen and (max-width: 1680px) {
  :root {
    --side-padding: 75px ;
  }
  body.single .work-content .content-gallery {
    max-width: 100% !important;
  }
  body.single .work-content .ddg-block.collapse-content, body.single .work-content .ddg-block.work-heading {
    max-width: 100% !important;
  }
  .ddg-block:not(.full-width):not(.wp-block-columns .ddg-block), .wp-block-columns:not(.full-width) {
    max-width: calc(100% - var(--side-padding) * 2);
    margin-left: auto;
    margin-right: auto;
  }
  .ddg-block:not(.head-banner):not(.full-width):not(.wp-block-columns .ddg-block), .wp-block-columns:not(.full-width) {
    overflow: hidden;
  }
  .head-banner.expertise-head .txt-wrap {
    max-width: calc(100% - 80px);
    margin: auto;
  }
  .head-banner.expertise-head .txt-wrap .top .caption {
    max-width: 636px;
  }
  .head-banner.expertise-head .txt-wrap h2 span:nth-child(2) {
    margin-top: 0;
  }
  .head-banner.expertise-head .image-wrap .image-item:first-child {
    width: 450px;
    padding-top: 450px;
    top: -120px;
    left: 55%;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
    width: 650px;
    padding-top: 650px;
    right: -110px;
    top: 570px;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(3) {
    width: 320px;
    padding-top: 320px;
    left: 0;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
    width: 260px;
    padding-top: 260px;
    left: 175px;
    top: max(125vh, 1300px);
  }
  .head-banner.expertise-head .image-wrap .image-item.space {
    width: 421px;
    height: 421px;
    right: 287px;
  }
  .head-banner.people-banner .text-wrap {
    top: 50%;
    left: var(--side-padding);
  }
  .head-banner.people-banner .text-wrap h2 {
    width: 100%;
    font-size: clamp(56px, 8px + 9.926vw, 110px);
    line-height: 1.25;
  }
  .heading-block.vertical.large .block-wrap {
    margin: auto;
  }
  .heading-block.vertical.large h2 {
    text-indent: 1.5em;
    line-height: 1.25;
  }
  .icon-block.top-image h4 {
    font-size: 36px;
    line-height: 1.25;
  }
  .icon-block.top-image .block-wrap {
    gap: 80px 48px;
    max-width: calc(100% - var(--side-padding) * 2);
    margin: auto;
  }
}
@media screen and (max-width: 1580px) {
  .head-banner.expertise-head .txt-wrap h2 {
    font-size: clamp(54px, 3px + 10.54vw, 170px);
    line-height: 1.25;
  }
}
@media screen and (max-width: 1500px) {
  .kv-block .block-wrap {
    padding-right: min(400px, 40%);
  }
  .ddg-what-shapes-us {
    gap: 92px;
  }
}
@media screen and (max-width: 1440px) {
  .kv-block {
    min-height: 880px;
    padding: 170px 0 0;
  }
  .kv-block .btn-arrow {
    --btn-font: 26px;
  }
  .kv-block .kv-txt {
    padding-top: 1px;
  }
  .kv-block .kv-txt h2 {
    margin: 0 0 20px;
    font-size: 140px;
    line-height: 140px;
  }
  .kv-block .kv-txt p {
    max-width: 870px;
  }
  .kv-block .kv-reel {
    width: 527px;
    height: 527px;
  }
  .works-block.triple-block .works-item-col {
    row-gap: min(140px, 10vw);
  }
  .contact-info {
    padding: 120px 20px 0;
  }
  .contact-info .contact-item p {
    padding-right: 0;
  }
  .image-list-block.early .block-wrap {
    padding: 0;
  }
  .image-list-block.early .col-span-m-4 {
    grid-column: span 4/span 4;
  }
  .image-list-block.client-logo img {
    width: 80%;
    min-width: 80px;
    max-width: 190px;
    max-height: 120px;
  }
  .carousel-block.with-content .entry-images .is-active .caption {
    margin-top: 13px;
    opacity: 1;
  }
  .carousel-block.image-carousel .single-item {
    padding: 0 40px;
    max-height: min(150vh, 1000px);
  }
  .carousel-block.image-carousel .single-item.portrait {
    padding: 0 40px;
    width: 545px;
  }
  .carousel-block.image-carousel .single-item.portrait:first-child {
    padding-left: 15vw;
    width: calc(15vw + 40px + 465px);
  }
  .carousel-block.image-carousel .single-item.portrait:first-child .image-inner {
    left: 15vw;
  }
  .carousel-block.image-carousel .single-item.portrait .image-inner {
    width: 465px;
    max-height: 695px;
    left: 40px;
  }
  .carousel-block.image-carousel .single-item.landscape {
    padding: 0 40px;
    width: 708px;
  }
  .carousel-block.image-carousel .single-item.landscape .image-inner {
    left: 40px;
    width: 628px;
    max-height: 420px;
  }
  .carousel-block.image-carousel .single-item.square {
    width: 745px;
    padding: 0 40px;
  }
  .carousel-block.image-carousel .single-item.square .image-inner {
    width: 665px;
    max-height: 665px;
    left: 40px;
  }
  .ddg-link-box p {
    font-size: 38px;
    line-height: 48px;
  }
  .image-banner.splash {
    padding: 150px 0 280px;
  }
  .image-banner.splash .image-wrap .img-container {
    width: 100%;
  }
  .image-banner.splash .image-item:first-child {
    width: 375px;
    height: 375px;
    left: 180px;
  }
  .image-banner.splash .image-item:nth-child(2) {
    width: 225px;
    height: 225px;
    left: calc(80% - 225px);
  }
  .image-banner.splash .image-item:nth-child(3) {
    width: 190px;
    height: 190px;
    left: 3%;
  }
  .image-banner.splash .image-item:nth-child(4) {
    width: 300px;
    height: 300px;
    left: 22%;
  }
  .image-banner.splash .image-item:nth-child(5) {
    width: 375px;
    height: 375px;
    top: 770px;
    left: calc(100% - 375px);
  }
  .image-banner.splash .image-item.space {
    width: 24px;
    height: 24px;
    left: calc(92% - 24px);
    top: 340px;
  }
  .head-banner.expertise-head .txt-wrap .caption {
    font-size: 30px;
    line-height: 40px;
  }
  .head-banner.expertise-head .txt-wrap .section {
    min-height: 1100px;
  }
  .head-banner.expertise-head .txt-wrap .section.top {
    padding-top: 246px;
  }
  .head-banner.expertise-head .image-wrap .image-item.space {
    width: 360px;
    height: 360px;
    top: max(120vh, 1130px);
    right: 260px;
  }
  .contact-head h2 {
    font-size: 130px;
    line-height: 142px;
  }
}
@media screen and (max-width: 1380px) {
  .kv-block .kv-txt p {
    font-size: 26px;
    line-height: 36px;
    margin: 0 0 36px;
  }
  .kv-block .kv-txt h2 {
    font-size: 129px;
    line-height: 146px;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 770px) and (max-height: 1000px) and (min-height: 769px) {
  .head-banner.people-banner .block-wrap .sticky-box {
    height: max(125vh, 1400px);
  }
}
@media screen and (max-width: 1200px) {
  .kv-block .btn-arrow {
    --btn-font: 24px;
  }
  .kv-block .btn-arrow svg {
    width: 36px;
  }
  .kv-block .kv-txt {
    padding-top: 48px;
  }
  .kv-block .kv-reel {
    width: 550px;
    height: 550px;
  }
  .kv-block .kv-txt p {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 30px;
  }
  .kv-block .kv-txt h2 {
    font-size: 108px;
    line-height: 126px;
    margin: 0 0 27px;
  }
  .heading-block.heading-horiz .block-wrap .sub {
    font-size: 18px;
  }
  .heading-block.heading-horiz .block-wrap h2 {
    font-size: 48px;
    line-height: 62px;
  }
  .head-banner.expertise-head .txt-wrap .caption {
    font-size: 26px;
    line-height: 36px;
    width: 60%;
  }
  .head-banner.expertise-head .txt-wrap .section.bottom {
    padding-top: 40vh;
    height: auto;
    padding-bottom: 20vh;
    min-height: auto;
  }
  .head-banner.expertise-head .image-wrap img {
    max-width: 100%;
  }
  .head-banner.expertise-head .image-wrap .image-item:first-child {
    width: 360px;
    padding-top: 360px;
    top: -80px;
    left: 57%;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
    width: 400px;
    padding-top: 400px;
    top: 580px;
    right: -50px;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(3) {
    width: 280px;
    padding-top: 280px;
    top: max(85vh, 800px);
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
    width: 220px;
    padding-top: 220px;
    top: max(125vh, 1000px);
  }
  .head-banner.expertise-head .image-wrap .image-item.space {
    width: 320px;
    height: 320px;
    right: 170px;
  }
  .image-banner.splash {
    padding: 150px 0 280px;
  }
  .image-banner.splash .image-wrap .img-container {
    width: 100%;
  }
  .image-banner.splash .image-item:first-child {
    width: 350px;
    height: 350px;
    left: 0;
  }
  .image-banner.splash .image-item:nth-child(2) {
    width: 220px;
    height: 220px;
    top: 130px;
    left: 70%;
  }
  .image-banner.splash .image-item:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 3%;
    top: unset;
    bottom: 25%;
  }
  .image-banner.splash .image-item:nth-child(4) {
    width: 200px;
    height: 200px;
    left: 18%;
    top: unset;
    bottom: 0;
  }
  .image-banner.splash .image-item:nth-child(5) {
    width: 260px;
    height: 260px;
    left: 60%;
    top: unset;
    bottom: 12%;
  }
  .image-banner.splash .image-item.space {
    left: calc(65% + 236px);
  }
  .contact-head {
    min-height: auto;
  }
  .contact-head h2 {
    font-size: 120px;
    line-height: 130px;
  }
  .contact-head p {
    font-size: 28px;
  }
  .image-list-block.ddg-our-people .block-wrap {
    gap: 60px 32px;
  }
  .image-list-block.ddg-our-people .single-image {
    font-size: 14px;
    line-height: 1.25;
  }
  .image-list-block.ddg-our-people .single-image h4 {
    margin: 12px 0 6px;
    font-size: 22px;
    line-height: 1.25;
  }
  .ddg-link-box {
    padding: 16px 23px;
  }
  .ddg-link-box p {
    max-width: 100%;
  }
  .ddg-link-box .ddg-block.btn-arrow svg {
    width: 30px;
    height: 30px;
  }
  .ddg-what-shapes-us {
    gap: 60px;
  }
  .ddg-what-shapes-us .text-col h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .kv-block {
    padding: 0;
  }
  .kv-block .block-wrap {
    padding-right: 25%;
  }
  .kv-block .kv-reel {
    width: 50%;
    max-width: 480px;
    max-height: 480px;
  }
  .kv-block .kv-txt {
    padding-top: 7%;
  }
  .kv-block .kv-txt h2 {
    font-size: 96px;
    line-height: 100px;
  }
  .contact-info {
    padding: 120px 0 0;
  }
  .contact-info .wp-block-columns {
    gap: 80px;
  }
  .contact-info .contact-item h2 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 42px;
  }
  .contact-info .contact-item .detail {
    margin-top: 32px;
    font-size: 28px;
    line-height: 36px;
  }
  .post-list.post article.featured {
    grid-column: span 4/span 4;
  }
  .post-list.post article.featured a {
    gap: 0;
    flex-direction: column;
  }
  .post-list.post article.featured .featured-content {
    width: 100%;
    min-height: unset;
  }
  .post-list.post article.featured .entry-image {
    width: 100%;
    padding-top: 100%;
  }
  .post-list.post article.featured .title {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
  }
  .post-list.post article.featured .excerpt, .post-list.post article.featured .btn-capsule {
    display: none;
  }
  .works-block .grid {
    gap: 0;
  }
  .head-banner.expertise-head .txt-wrap .section {
    min-height: 800px;
  }
  .head-banner.expertise-head .image-wrap .image-item:first-child {
    width: 260px;
    padding-top: 260px;
    top: 0;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
    width: 350px;
    padding-top: 350px;
    right: -20px;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(3) {
    width: 280px;
    padding-top: 280px;
    top: max(85vh, 800px);
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
    width: 180px;
    padding-top: 180px;
    top: max(120vh, 1000px);
    left: 130px;
  }
  .head-banner.expertise-head .image-wrap .image-item.space {
    width: 260px;
    height: 260px;
    top: max(100vh, 880px);
  }
  .head-banner.people-banner .text-wrap {
    width: calc(100% - var(--side-padding) * 2);
  }
  .head-banner.people-banner .text-wrap h2 {
    min-width: unset;
  }
  .carousel-block.with-content .block-wrap {
    row-gap: 60px;
  }
  .carousel-block.with-content .entry-images li {
    max-width: 100%;
  }
  .carousel-block.with-content .entry-images,
  .carousel-block.with-content .entry-content {
    grid-column: span 12/span 12;
  }
  .carousel-block.content-carousel .entry-content .single-item {
    padding-right: 0;
  }
  .ddg-what-shapes-us {
    gap: 60px;
    flex-direction: column;
    overflow: hidden;
  }
  .ddg-what-shapes-us .text-col h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .ddg-link-box-group {
    flex-direction: column;
  }
  .ddg-link-box-group .wp-block-column {
    flex-basis: 100% !important;
  }
  .ddg-block.testimonial {
    font-size: 26px;
    line-height: 42px;
  }
  .icon-block.triple .single-block, .icon-block.double .single-block {
    grid-column: span 6/span 6;
  }
}
@media screen and (max-width: 980px) {
  .image-list-block.ddg-our-people .single-image {
    grid-column: span 6/span 6;
  }
}
@media screen and (max-width: 820px) {
  .head-banner.expertise-head .txt-wrap .section.top {
    padding-top: 23vh;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
    right: -55px;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
    left: 60px;
  }
}
@media screen and (max-width: 769px) {
  .spacer-m-140 {
    height: 190px !important;
  }
  .spacer-m-140 {
    height: 140px !important;
  }
  .spacer-m-120 {
    height: 120px !important;
  }
  .spacer-m-100 {
    height: 100px !important;
  }
  .spacer-m-80 {
    height: 80px !important;
  }
  .spacer-m-60 {
    height: 60px !important;
  }
  .spacer-m-50 {
    height: 50px !important;
  }
  .spacer-m-40 {
    height: 40px !important;
  }
  .spacer-m-30 {
    height: 30px !important;
  }
  .spacer-m-20 {
    height: 20px !important;
  }
  .spacer-m-10 {
    height: 10px !important;
  }
  .btn-arrow {
    --btn-font: 24px;
    padding: 20px 10px;
  }
  .btn-arrow a {
    justify-content: space-between;
    width: 100%;
  }
  .btn-arrow svg {
    width: 30px;
  }
  .btn-capsule {
    --btn-font: 42px;
    --btn-line-height: 52px;
  }
  .btn-capsule svg {
    right: -100px;
  }
  .kv-block {
    min-height: auto;
    height: auto;
  }
  .kv-block .btn-arrow {
    --btn-font: 21px;
  }
  .kv-block .btn-arrow svg {
    width: 36px;
  }
  .kv-block .kv-reel {
    width: 55%;
    height: 55%;
  }
  .kv-block .block-wrap {
    padding-right: 0;
  }
  .kv-block .kv-txt p {
    margin-bottom: 70px;
  }
  .kv-block .kv-txt h2 {
    font-size: 64px;
    line-height: 64px;
    margin: 0 0 40px;
  }
  .heading-block.heading-horiz {
    overflow-x: hidden;
  }
  .heading-block.heading-horiz .block-wrap {
    flex-direction: column;
    gap: 15px;
  }
  .heading-block.heading-horiz .block-wrap .sub {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .heading-block.heading-horiz .block-wrap h2 {
    width: 100%;
    font-size: 36px;
    line-height: 48px;
  }
  .contact-head h2 {
    font-size: 100px;
    line-height: 110px;
  }
  .contact-head p {
    font-size: 26px;
  }
  .contact-head p br {
    display: block;
  }
  .ddg-block.testimonial {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }
  .post-list:not(.home .post-list) .load-more.trigger {
    margin: 80px auto 0;
    font-size: 28px;
    line-height: 39px;
    width: fit-content;
    height: auto;
    padding: 20px 26px;
  }
  .post-list:not(.home .post-list).post article.featured {
    grid-column: span 12/span 12;
  }
  .post-list:not(.home .post-list).post article .entry-image {
    margin-bottom: 12px;
  }
  .post-list:not(.home .post-list).post article .entry-meta .term {
    margin-bottom: 8px;
  }
  .post-list:not(.home .post-list).post article .title, .post-list:not(.home .post-list).post article .entry-meta {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
  .post-list:not(.home .post-list).post article .title {
    margin-top: 8px;
  }
  .post-list:not(.home .post-list).post .block-wrap {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 30px 20px;
  }
  .post-list:not(.home .post-list).post article:nth-child(5n+1) {
    grid-column: span 12/span 12;
  }
  .post-list:not(.home .post-list).post article:not(:nth-child(5n+1)) {
    grid-column: span 6/span 6;
  }
  .head-banner.people-banner {
    height: 100%;
  }
  .head-banner.people-banner .clip-mask {
    height: 100%;
  }
  .head-banner.people-banner .clip-mask .clip-path-locate {
    height: 100%;
  }
  .head-banner.people-banner .clip-mask svg {
    height: 100%;
  }
  .head-banner.people-banner .block-wrap {
    height: 100%;
  }
  .head-banner.people-banner .block-wrap .sticky-box {
    height: 100%;
  }
  .head-banner.people-banner .text-wrap .sub {
    font-size: 22px;
    line-height: 1.5;
  }
  .heading-block.vertical.large .block-wrap {
    max-width: 100%;
  }
  .heading-block.vertical.large h2 {
    text-indent: 0;
  }
  .collapse-list .collapse-item {
    padding: 20px 0;
  }
  .collapse-list .collapsible {
    font-size: 30px;
    line-height: 38px;
    padding: 0;
  }
  .collapse-list .collapsible svg {
    width: 40px;
  }
  .ddg-full-width-image {
    max-height: 60vh;
  }
  .carousel-block.image-carousel {
    margin-top: 95px;
  }
  .carousel-block.image-carousel .image-slide {
    transform: translateX(-30vw);
  }
  .carousel-block.image-carousel .block-wrap {
    margin: 0;
    padding-bottom: 100px;
  }
  .carousel-block.image-carousel .entry-head h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .carousel-block.image-carousel .single-item {
    max-height: min(150vh, 580px);
  }
  .carousel-block.image-carousel .single-item.portrait {
    width: 400px;
  }
  .carousel-block.image-carousel .single-item.portrait:first-child {
    padding-left: 10vw;
    width: calc(10vw + 40px + 320px);
  }
  .carousel-block.image-carousel .single-item.portrait:first-child .image-inner {
    left: 10vw;
  }
  .carousel-block.image-carousel .single-item.portrait .image-inner {
    width: 320px;
    max-height: 460px;
  }
  .carousel-block.image-carousel .single-item.landscape {
    width: 440px;
  }
  .carousel-block.image-carousel .single-item.landscape .image-inner {
    width: 360px;
    max-height: 240px;
  }
  .carousel-block.image-carousel .single-item.square {
    width: 400px;
  }
  .carousel-block.image-carousel .single-item.square .image-inner {
    width: 320px;
    max-height: 320px;
  }
  .image-banner.splash .txt-wrap h3 {
    font-size: 90px;
    line-height: 100px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --side-padding: 20px ;
  }
  .wp-block-spacer.spacer-m-240 {
    height: 240px !important;
  }
  .wp-block-spacer.spacer-m-170 {
    height: 170px !important;
  }
  .wp-block-spacer.spacer-m-140 {
    height: 140px !important;
  }
  .wp-block-spacer.spacer-m-120 {
    height: 120px !important;
  }
  .wp-block-spacer.spacer-m-100 {
    height: 100px !important;
  }
  .wp-block-spacer.spacer-m-90 {
    height: 90px !important;
  }
  .wp-block-spacer.spacer-m-80 {
    height: 80px !important;
  }
  .wp-block-spacer.spacer-m-60 {
    height: 60px !important;
  }
  .wp-block-spacer.spacer-m-50 {
    height: 50px !important;
  }
  .wp-block-spacer.spacer-m-40 {
    height: 40px !important;
  }
  .wp-block-spacer.spacer-m-30 {
    height: 30px !important;
  }
  .wp-block-spacer.spacer-m-20 {
    height: 20px !important;
  }
  .wp-block-spacer.spacer-m-10 {
    height: 10px !important;
  }
  body {
    font-size: 16px;
  }
  .ddg-block h2.section-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
  }
  .reel-player .btn-turn-off {
    top: 0;
  }
  .reel-player .btn-turn-off:after,
  .reel-player .btn-turn-off:before {
    width: 25px;
  }
  .btn-capsule {
    --btn-font: 28px;
    --btn-line-height: 39px;
  }
  .btn-capsule svg {
    display: none;
  }
}
@media screen and (max-width: 600px) and (hover: hover) {
  .btn-capsule .arrow {
    width: 32px;
  }
  .btn-capsule svg {
    width: 32px;
    display: block;
  }
  .btn-capsule a:hover {
    min-width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .works-block .works-item-col,
  .works-block .work-item {
    width: 100%;
  }
  .works-block .works-item-col .thumbnail,
  .works-block .work-item .thumbnail {
    padding-top: 100% !important;
    height: unset !important;
    margin-bottom: 15px;
  }
  .works-block p {
    margin-bottom: 1em;
    font-size: 14px;
    line-height: 18px;
  }
  .works-block h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .works-block .block-wrap {
    row-gap: 50px;
  }
  .works-block.triple-block .works-item-col {
    row-gap: 50px;
  }
  .heading-block.vertical .sub {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
  }
  .heading-block.vertical h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .image-banner.splash {
    padding: 75px 0;
  }
  .image-banner.splash.in .txt-wrap {
    transform: translate(-50%, -60%) scale(1);
  }
  .image-banner.splash .ribbon {
    height: 100vh;
    min-height: 860px;
  }
  .image-banner.splash .txt-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
  .image-banner.splash .txt-wrap h3 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 40px;
  }
  .image-banner.splash .txt-wrap p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 40px;
  }
  .image-banner.splash .txt-wrap p br {
    display: none;
  }
  .image-banner.splash .txt-wrap .btn-arrow {
    padding: 20px 10px;
    font-size: 24px;
  }
  .image-banner.splash .image-item img {
    object-fit: contain;
    width: 100%;
  }
  .image-banner.splash .image-item:first-child {
    width: 165px;
    height: 165px;
    left: 20px;
    top: -30px;
  }
  .image-banner.splash .image-item:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 110px;
    left: unset;
    right: 44px;
  }
  .image-banner.splash .image-item:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 20px;
    top: unset;
    bottom: 200px;
    z-index: 9;
  }
  .image-banner.splash .image-item:nth-child(4) {
    width: 118px;
    height: 118px;
    left: 60px;
    top: unset;
    bottom: 20px;
  }
  .image-banner.splash .image-item:nth-child(5) {
    width: 175px;
    height: 175px;
    left: unset;
    top: unset;
    right: 0;
    bottom: 125px;
  }
  .image-banner.splash .image-item.space {
    width: 24px;
    height: 24px;
    left: unset;
    right: 44px;
    top: 230px;
  }
  .kv-block .btn-circle {
    display: none;
  }
  .kv-block .kv-txt {
    padding-top: 60px;
  }
  .kv-block .kv-txt .btn-arrow {
    width: 100%;
  }
  .kv-block .kv-txt .btn-arrow a {
    justify-content: center;
  }
  .kv-block .kv-txt .btn-arrow svg {
    width: 30px;
  }
  .kv-block .kv-reel {
    width: 60%;
    height: 60%;
    max-width: 170px;
    max-height: 170px;
    cursor: auto;
  }
  .kv-block .kv-reel .btn-play-mobile {
    pointer-events: none;
    visibility: visible;
  }
  .post-list:not(.home .post-list).post .block-wrap {
    gap: 50px 20px;
  }
  .post-list .block-wrap {
    gap: 60px 0;
  }
  .post-list article .entry-image {
    margin-bottom: 12px;
  }
  .post-list article .term, .post-list article .title {
    font-size: 14px;
    line-height: 18px;
  }
  .post-list article .entry-meta .term {
    margin-bottom: 12px;
  }
  .post-list.work .block-wrap {
    gap: 60px 0;
  }
  .post-list.work article .entry-meta {
    font-size: 14px;
    line-height: 18px;
  }
  .post-list.work article .entry-image {
    padding-top: 100%;
    margin-bottom: 15px;
  }
  .post-list.work article h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
  }
  .post-list.work article .excerpt {
    font-size: 14px;
    line-height: 18px;
  }
  .contact-head {
    padding-left: min(20px, 5%);
    padding-top: min(212px, 55%);
  }
  .contact-head h2 {
    font-size: 56px;
    line-height: 70px;
  }
  .contact-head p {
    font-size: 22px;
    line-height: 32px;
  }
  .contact-info .contact-item {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-info .contact-item h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .contact-info .contact-item .detail {
    margin-top: 15px;
    font-size: 22px;
    line-height: 32px;
  }
  .image-list-block .display-title {
    margin-bottom: 60px;
  }
  .image-list-block h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 60px;
  }
  .image-list-block.client-logo .block-wrap {
    gap: 24px;
  }
  .image-list-block.ddg-our-people .single-image {
    font-size: 12px;
  }
  .image-list-block.ddg-our-people .single-image h4 {
    font-size: 16px;
  }
  .image-list-block.ddg-our-people .block-wrap {
    gap: 24px 20px;
  }
  .icon-block .entry-content {
    font-size: 16px;
    line-height: 26px;
  }
  .icon-block h4 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .icon-block.double .block-wrap {
    gap: 60px 0;
  }
  .icon-block.double .single-block {
    flex-direction: column;
  }
  .carousel-block.with-content .entry-images .splide__pagination {
    display: none;
  }
  .carousel-block.with-content .entry-content h3 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 40px;
  }
  .carousel-block.content-carousel .splide__pagination__page {
    height: 2px;
  }
  .carousel-block.content-carousel .item-link {
    font-size: 24px;
    line-height: 33.36px;
    margin-left: 0;
    margin-top: 80px;
  }
  .carousel-block.content-carousel .item-link a {
    padding: 0;
  }
  .carousel-block.content-carousel .item-link svg {
    width: 30px;
    height: 30px;
  }
  .carousel-block.content-carousel .entry-content {
    font-size: 20px;
    line-height: 30px;
    cursor: auto !important;
  }
  .carousel-block.content-carousel .entry-content h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .carousel-block.content-carousel .entry-content .single-item {
    padding-right: 0;
  }
  .head-banner.expertise-head .txt-wrap {
    max-width: calc(100% - 40px);
    overflow: hidden;
  }
  .head-banner.expertise-head .txt-wrap .section.top {
    padding-top: max(23vh, 190px);
  }
  .head-banner.expertise-head .txt-wrap .section {
    height: 80vh;
    min-height: 780px;
  }
  .head-banner.expertise-head .txt-wrap .caption {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    line-height: 28px;
  }
  .head-banner.expertise-head .txt-wrap p {
    margin-bottom: 1em;
  }
  .head-banner.expertise-head .txt-wrap .bottom {
    padding-bottom: 140px;
    min-height: auto;
    height: auto;
  }
  .head-banner.expertise-head .txt-wrap .top .caption {
    width: 100%;
    margin-top: 40px;
  }
  .head-banner.expertise-head .image-wrap .image-item:first-child {
    width: 182px;
    padding-top: 182px;
    top: -20px;
    left: 35%;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(2) {
    width: 200px;
    padding-top: 200px;
    top: max(65vh, 620px);
    right: -25px;
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(3) {
    width: 102px;
    padding-top: 102px;
    left: 0;
    top: max(73vh, 650px);
  }
  .head-banner.expertise-head .image-wrap .image-item:nth-child(4) {
    width: 80px;
    padding-top: 80px;
    top: max(92vh, 830px);
    left: max(10%, 33px);
  }
  .head-banner.expertise-head .image-wrap .image-item.space {
    width: 146px;
    height: 146px;
    right: 70px;
    top: max(65vh, 720px);
    z-index: 9;
  }
  .ddg-link-box {
    min-height: calc(100vw - var(--side-padding) * 2);
  }
  .ddg-link-box p {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 375px) {
  .kv-block .kv-txt h2 {
    font-size: 54px;
    line-height: 58px;
  }
}
.ddg-block.work-heading h1 {
  font-weight: 400;
  font-size: 64px;
  line-height: 80px;
  color: var(--main-color);
}
.ddg-block.work-heading .caption {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  font-size: 32px;
  line-height: 44px;
  color: var(--main-color);
}
.ddg-block.work-heading .caption p {
  margin: 0;
}
.ddg-block.work-heading:not(.has-hero) {
  margin-bottom: calc(var(--page-padding-top) / 2);
}
.ddg-block.work-heading.has-hero {
  margin-bottom: 24px;
}
.ddg-block.work-heading.has-hero .content-hero {
  margin-top: calc(var(--page-padding-top) / 2);
}
.ddg-block.work-heading.has-hero .content-hero .video-container {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .ddg-block.work-heading .entry-title {
    margin-bottom: 20px;
  }
  .ddg-block.work-heading .entry-title, .ddg-block.work-heading .caption {
    grid-column: span 12/span 12;
  }
}
@media screen and (max-width: 600px) {
  .ddg-block.work-heading {
    gap: 20px;
  }
  .ddg-block.work-heading h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .ddg-block.work-heading .caption {
    font-size: 22px;
    line-height: 32px;
  }
}
.content-gallery .gallery-wrap {
  margin-bottom: 24px;
  align-items: center;
}
.content-gallery figure {
  position: relative;
}
.content-gallery figure.embed-col iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-gallery img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.content-gallery img.show {
  height: 100%;
  top: 50%;
  opacity: 1;
}
.content-gallery .gallery-wrap__caption {
  margin-top: -12px;
}

@media screen and (max-width: 1024px) {
  .content-gallery.mobile-square .col:not(.col-span-12) {
    padding-top: 100% !important;
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .content-gallery figure.embed-col:not(.col-span-12) {
    min-height: 252px;
  }
  .content-gallery.mobile-square .col {
    position: relative;
    padding-top: 100% !important;
    overflow: hidden;
  }
  .content-gallery.mobile-square .col img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .content-gallery .gallery-wrap__caption {
    margin-top: -16px;
    font-size: 14px;
    line-height: 20px;
  }
}
.ddg-block.collapse-content p {
  margin-bottom: 30px;
}
.ddg-block.collapse-content .hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.ddg-block.collapse-content.show-all .hidden {
  visibility: visible;
  opacity: 1;
}
.ddg-block.collapse-content.show-all .hidden-image {
  margin-top: 145px;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s ease, margin-top 0.1s ease;
  transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s ease, margin-top 0.1s ease;
}
.ddg-block.collapse-content.show-all .btn-more-info {
  margin-top: 85px;
}
.ddg-block.collapse-content.show-all .btn-more-info svg {
  transform: rotate(-180deg);
}
.ddg-block.collapse-content.show-all .btn-more-info .btn-text span:first-child {
  margin-top: -40px;
}
.ddg-block.collapse-content .btn-more-info {
  --btn-font: 28px;
  --main-color: #ff5532;
  --main-text: #fff;
  font-size: var(--btn-font);
  font-weight: 400;
  line-height: 40px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.ddg-block.collapse-content .btn-more-info svg {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  transform-origin: center;
}
.ddg-block.collapse-content .btn-more-info .btn-text {
  position: relative;
  overflow: hidden;
  min-width: 160px;
  height: 40px;
}
.ddg-block.collapse-content .btn-more-info .btn-text span {
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.ddg-block.collapse-content .info-content {
  grid-column: 7/span 6;
}
.ddg-block.collapse-content .info-meta .info-item {
  margin-bottom: 45px;
}
.ddg-block.collapse-content .info-meta .info-item h5 {
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  text-transform: uppercase;
}
.ddg-block.collapse-content .info-meta .info-item span {
  font-size: 20px;
  line-height: 30px;
}
.ddg-block.collapse-content img {
  width: 100%;
  object-fit: cover;
}
.ddg-block.collapse-content .mobile-hidden-image {
  margin-top: 20px;
  display: none;
  visibility: hidden;
}
.ddg-block.collapse-content .hidden-image {
  margin-top: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease 0.15s;
  transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease 0.15s;
}
@media screen and (max-width: 1200px) {
  .ddg-block.collapse-content .info-meta-col {
    grid-column: span 5/span 5;
  }
}
@media screen and (max-width: 769px) {
  .ddg-block.collapse-content .info-meta .info-item {
    margin-bottom: 30px;
  }
  .ddg-block.collapse-content .info-meta .info-item h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }
  .ddg-block.collapse-content .info-meta .info-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
  }
  .ddg-block.collapse-content.show-all .btn-more-info {
    margin-top: 60px;
  }
  .ddg-block.collapse-content.show-all .btn-more-info .btn-text span:first-child {
    margin-top: -33px;
  }
  .ddg-block.collapse-content.show-all .hidden-image {
    margin-top: 60px;
  }
  .ddg-block.collapse-content .hidden-image:not(.mobile-hidden-image) {
    display: none;
  }
  .ddg-block.collapse-content .mobile-hidden-image {
    display: block;
  }
  .ddg-block.collapse-content .btn-more-info {
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    margin: 0;
  }
  .ddg-block.collapse-content .btn-more-info .btn-text {
    min-width: 130px;
    height: 33px;
  }
  .ddg-block.collapse-content .btn-more-info svg {
    width: 40px;
  }
}
@media screen and (max-width: 769px) {
  .ddg-block.collapse-content .info-meta-col, .ddg-block.collapse-content .info-content {
    grid-column: span 12/span 12;
  }
}

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