* {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1 {
  display: none;
}

.delighter.fadein.started {
  opacity: 1;
}

.delighter.fadein {
  opacity: 0;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

.delighter.fadeLeft.started {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.delighter.fadeLeft {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.delighter.fadeRight.started {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.delighter.fadeRight {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.delighter.fadeTop.started {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.delighter.fadeTop {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@-webkit-keyframes upAndDown {
  0%, 100% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes upAndDown {
  0%, 100% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes upAndDown2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(-25px) translateX(-50%);
            transform: translateY(-25px) translateX(-50%);
  }
}
@keyframes upAndDown2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(-25px) translateX(-50%);
            transform: translateY(-25px) translateX(-50%);
  }
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-webkit-keyframes shine {
  100% {
    top: 100%;
  }
}
@keyframes shine {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes ledLight {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes ledLight {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
}

.project {
  position: relative;
  overflow: hidden;
  font-family: "century-gothic", sans-serif;
}
.project img {
  width: 100%;
}
.project figure {
  margin: 0;
  padding: 0;
}
.project .containerBox {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
}
.project #setUp-video {
  display: none;
}
.project .kv {
  width: 100%;
  position: relative;
}

.project .kv figure {
  line-height: 0;
}

.project .kv__pd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.project .kv__content {
  position: absolute;
  top: 56%;
  left: 7%;
  width: 50%;
  z-index: 50;
}

.project .kv__content-logo {
  width: 40%;
  margin-bottom: 10px;
}

@media (min-width: 996px) {
  .project .kv__content {
    top: 65%;
    left: 8%;
    width: 50%;
    z-index: 50;
  }
  .project .kv__content-logo {
    width: 55%;
    margin-bottom: 15px;
  }
}
.project .kv__content-title {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  color: #707070;
}
@media (min-width: 996px) {
  .project .kv__content-title {
    font-size: 2.5vw;
    text-align: left;
    color: #9c9da0;
  }
}
@media (min-width: 1930px) {
  .project .kv__content-title {
    font-size: 75px;
  }
}
.project .kv__content-title span {
  color: #0095f2;
}
.project .kv .shine {
  position: relative;
  overflow: hidden;
}
/* .project .kv .shine::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  display: block;
  position: absolute;
  top: -75%;
  left: -50%;
  -webkit-transform: rotateZ(-6deg);
          transform: rotateZ(-6deg);
  width: 200%;
  height: 10px;
  z-index: 2;
  background: #21bcaf;
  mix-blend-mode: screen;
  -webkit-animation: shine 2s linear infinite;
          animation: shine 2s linear infinite;
} */
.project .app {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f3cff), color-stop(#61c7ff), to(#0087f6));
  background: linear-gradient(#2f3cff, #61c7ff, #0087f6);
  padding: 30px 0;
  z-index: 10;
}
.project .app__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .project .app__wrapper {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.project .app__wrapper-content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 996px) {
  .project .app__wrapper-content {
    width: 52%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.project .app__wrapper-content h2 {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  text-align: right;
  width: auto;
  display: inline-block;
  margin-bottom: 15px;
}

.project .app__wrapper-content h2 span {
  color: #b3e2ff;
  font-weight: bold;
}

.project .app__wrapper-content h4 {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
@media (min-width: 996px) {
  .project .app__wrapper-content h4 {
    font-size: 1.3vw;
  }
}
@media (min-width: 1930px) {
  .project .app__wrapper-content h4 {
    font-size: 28px;
  }
}
.project .app__wrapper-content .bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: 20px;
}
@media (min-width: 996px) {
  .project .app__wrapper-content h2 {
    font-size: 40px;
  }
  .project .app__wrapper-content .bottom-block {
    margin-top: 0;
  }
}
.project .app__wrapper-content .bottom-block__leftBox {
  width: 65%;
}
@media (min-width: 1300px) {
  .project .app__wrapper-content .bottom-block__leftBox {
    width: auto;
  }
}
.project .app__wrapper-content .bottom-block__leftBox-searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
@media (min-width: 996px) {
  .project .app__wrapper-content .bottom-block__leftBox-searchBox {
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 8px;
  }
}
.project .app__wrapper-content .bottom-block__leftBox-searchBox figure {
  width: 20px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 996px) {
  .project .app__wrapper-content .bottom-block__leftBox-searchBox figure {
    width: 30px;
    margin-right: 25px;
  }
}
.project .app__wrapper-content .bottom-block__leftBox-searchBox h5 {
  font-size: 16px;
  font-weight: normal;
  padding-left: 15px;
  border-left: 1px solid #BFC0C0;
}
@media (min-width: 996px) {
  .project .app__wrapper-content .bottom-block__leftBox-searchBox h5 {
    font-size: 1.3vw;
    padding-left: 25px;
  }
}
@media (min-width: 1930px) {
  .project .app__wrapper-content .bottom-block__leftBox-searchBox h5 {
    font-size: 28px;
  }
}
.project .app__wrapper-content .bottom-block__leftBox-downloadImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project .app__wrapper-content .bottom-block__leftBox-downloadImg figure:nth-child(1) {
  margin-right: 10px;
}
@media (min-width: 996px) {
  .project .app__wrapper-content .bottom-block__leftBox-downloadImg figure:nth-child(1) {
    margin-right: 20px;
  }
}
.project .app__wrapper-content .bottom-block__rightBox {
  width: 30%;
}
@media (min-width: 996px) {
  .project .app__wrapper-content .bottom-block__rightBox figure {
    margin-top: 60px;
  }
}
.project .app__wrapper-phoneImg {
  position: relative;
  margin-top: -50px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 80%;
  margin: -20px auto 0;
}
@media (min-width: 996px) {
  .project .app__wrapper-phoneImg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: auto;
    margin-top: -150px;
  }
}
.project .app__wrapper-phoneImg figure {
  width: 60%;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .project .app__wrapper-phoneImg figure {
    width: 100%;
  }
}
.project .app__wrapper-phoneImg .phone01 {
  position: relative;
  z-index: 10;
  -webkit-animation: upAndDown 3s ease-in-out infinite;
          animation: upAndDown 3s ease-in-out infinite;
}
.project .app__wrapper-phoneImg .phone02 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: upAndDown2 3s ease-in-out infinite;
          animation: upAndDown2 3s ease-in-out infinite;
}
.project .video {
  padding: 50px 0;
}
@media (min-width: 996px) {
  .project .video {
    padding: 100px 0 50px;
  }
}
.project .video__wrapper {

}

.video__wrapper-content {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.video__wrapper-content .setupBox {
  position: relative;
  background: #94e5fe;
  padding: 15px 15px 20px 15px;
  border-radius: 12px 0px 12px 0 ;
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
}

.video__wrapper-content .setupBox--purple {
  background: #91b0ff;
  color: #fff;
}

.video__wrapper-content .setupBox::before{
  content: '';
  position: absolute;
  top: -10px;
  left: -9px;
  width: 99%;
  height: 99%;
  border: 2px solid #0095f2;
  border-radius: 12px 0px 12px 0 ;
}

.video__wrapper-content .setupBox p {
  position: relative;
  z-index: 55;
}

.video__wrapper-content .setupBox .arrow-icon {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 66%);
  width: 30px;
  z-index: 50;
}

.project .video__wrapper .videobox-wrapper {
  width: 100%;
  padding: 0 0px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .project .video__wrapper .videobox-wrapper {
    width: 100%;
  }
}
.project .video__wrapper .videobox-wrapper__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.project .video__wrapper .videobox-wrapper__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 996px) {
  .project .video__wrapper {
    display: flex;
    align-items: center;
  }
  .video__wrapper-content {
    width: 35%;
    padding: 0 20px;
    margin-bottom: 0px;
  }
  .project .video__wrapper .videobox-wrapper {
    width: 60%;
    padding: 0 20px;
  }
  
}

.project .ledStatus {
  padding: 50px 0 0;
}
@media (min-width: 996px) {
  .project .ledStatus {
    padding: 50px 0;
  }
}
.project .ledStatus__wrapper {
  max-width: 1000px;
  margin: 0 auto 50px;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper {
    margin: 0 auto;
  }
}
.project .ledStatus__wrapper-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper-title {
    font-size: 3vw;
  }
}
@media (min-width: 1930px) {
  .project .ledStatus__wrapper-title {
    font-size: 60px;
  }
}


.project .ledStatus__wrapper-subtitle {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  margin: 20px 0 0px;
  text-align: center;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper-subtitle {
    font-size: 1vw;
    margin: 20px 0 0px;
  }
}
@media (min-width: 1930px) {
  .project .ledStatus__wrapper-subtitle {
    font-size: 28px;
  }
}

.project .ledStatus__wrapper-note {
  font-size: 15px;
  margin: 10px 0 0px;
  color: #666;
  text-align: center;
}


.project .ledStatus__wrapper-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper-block {
    margin: 50px 0;
  }
}
.project .ledStatus__wrapper-block .cardItem {
  width: 32%;
  padding: 0 10px;
  text-align: center;
}

.project .ledStatus__wrapper-block .cardItem {
  padding: 0 30px;
}

.project .ledStatus__wrapper-block .cardItem h5 {
  font-size: 24px;
  font-weight: bold;
}
.project .ledStatus__wrapper-block .cardItem__pdBox {
  position: relative;
  margin: 10px 0;
}

.cardItem__pdBox-text {
  position: absolute;
  top: 4.7%;
  right: 25%;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.cardItem__pdBox-text1 {
  position: absolute;
  bottom: 5%;
  left: 9%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.cardItem__pdBox-text2 {
  position: absolute;
  bottom: 5%;
  left: 38%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.cardItem__pdBox-text3 {
  position: absolute;
  bottom: 5%;
  left: 76.5%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.project .ledStatus__wrapper-block .cardItem__pdBox-light {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ledLight 2s infinite;
          animation: ledLight 2s infinite;
  z-index: 0;
  width: 100%;
}
.project .ledStatus__wrapper-block .cardItem .featurePanel p {
  font-weight: 600;
}
.project .ledStatus__wrapper-block .cardItem .featurePanel .icon-box {
  width: 15px;
  margin: 10px auto;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper-block .cardItem .featurePanel .icon-box {
    width: 18px;
  }
}
.project .ledStatus__wrapper-block .cardItem .featurePanel .icon-box img:hover {
  cursor: pointer;
}
.project .ledStatus__wrapper-block .cardItem .toggle-content {
  display: none;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper .hatch-prev, .project .ledStatus__wrapper .hatch-next {
    width: 20px;
  }
}
.project .ledStatus__wrapper .hatch-prev:hover, .project .ledStatus__wrapper .hatch-next:hover {
  cursor: pointer;
  opacity: 0.8;
}
.project .ledStatus__wrapper .hatch-prev figure img, .project .ledStatus__wrapper .hatch-next figure img {
  width: 20px;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper .hatch-prev figure img, .project .ledStatus__wrapper .hatch-next figure img {
    width: 30px;
  }
}
.project .ledStatus__wrapper .hatch-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -5%;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper .hatch-prev {
    left: -3%;
  }
}
.project .ledStatus__wrapper .hatch-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5%;
}
@media (min-width: 996px) {
  .project .ledStatus__wrapper .hatch-next {
    right: -3%;
  }
}
.project .ledStatus__wrapper .hatch-next.slick-active {
  opacity: 1;
}
.project .ledStatus__wrapper .hatch-prev.slick-active {
  opacity: 0.5;
}
.project .ledStatus__wrapper .hatch-next.slick-disabled {
  opacity: 0.3;
}
.project .ledStatus__wrapper .hatch-prev.slick-disabled {
  opacity: 0.3;
}
.project .flexible-deployment {
  position: relative;
}
.project .flexible-deployment .dec-02 {
  position: absolute;
  top: -15%;
  right: 0;
  width: 30%;
}
@media (min-width: 996px) {
  .project .flexible-deployment .dec-02 {
    width: auto;
  }
}
.project .flexible-deployment .dec-02 figure {
  -webkit-animation: ripple 2s infinite ease-out;
          animation: ripple 2s infinite ease-out;
}
.project .flexible-deployment .dec-02 figure:nth-child(1) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.project .flexible-deployment .dec-02 figure:nth-child(2) {
  position: absolute;
  top: 0;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.project .flexible-deployment .dec-02 figure:nth-child(3) {
  position: absolute;
  top: 0;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0;
}
.project .flexible-deployment__imgBox {
  position: relative;
  z-index: 10;
}
@media (min-width: 996px) {
  .project .flexible-deployment__imgBox {
    width: 55%;
  }
}
@media (min-width: 1930px) {
  .project .flexible-deployment__imgBox {
    width: 50%;
  }
}
@media (min-width: 996px) {
  .project .flexible-deployment__wrapper {
    max-width: 1280px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (min-width: 996px) {
  .project .flexible-deployment__wrapper-content {
    width: 35%;
    margin-left: auto;
  }
}
.project .flexible-deployment__wrapper-content .title {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  margin-top: 20px;
}
@media (min-width: 996px) {
  .project .flexible-deployment__wrapper-content .title {
    font-size: 3vw;
    margin-top: 0;
    width: 80%;
  }
}
@media (min-width: 1930px) {
  .project .flexible-deployment__wrapper-content .title {
    font-size: 60px;
  }
}
.project .flexible-deployment__wrapper-content .note {
  font-size: 14px;
}
@media (min-width: 996px) {
  .project .flexible-deployment__wrapper-content .note {
    font-size: 16px;
  }
}
.project .flexible-deployment__wrapper-content h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  margin: 20px 0 30px;
}
@media (min-width: 996px) {
  .project .flexible-deployment__wrapper-content h4 {
    font-size: 1.3vw;
    margin: 20px 0 60px;
  }
}
@media (min-width: 1930px) {
  .project .flexible-deployment__wrapper-content h4 {
    font-size: 28px;
  }
}
.project .faq {
  position: relative;
  padding: 0 0 50px;
  z-index: 10;
}
@media (min-width: 996px) {
  .project .faq {
    padding: 50px 0;
  }
}
.project .faq__wrapper .title {
  font-size: 28px;
  font-weight: bold;
  color: #0095f2;
  text-align: center;
}
@media (min-width: 996px) {
  .project .faq__wrapper .title {
    font-size: 3vw;
  }
}
@media (min-width: 1930px) {
  .project .faq__wrapper .title {
    font-size: 60px;
  }
}
.project .faq__wrapper-content {
  margin: 20px 0;
}
@media (min-width: 996px) {
  .project .faq__wrapper-content {
    margin: 50px 0;
  }
}
.project .faq__wrapper-content .item {
  margin-bottom: 10px;
}
@media (min-width: 996px) {
  .project .faq__wrapper-content .item {
    margin-bottom: 20px;
  }
}
.project .faq__wrapper-content .item .myPanel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #0095f2;
  padding: 15px;
  border-radius: 8px;
}
.project .faq__wrapper-content .item .myPanel p {
  font-size: 17px;
  color: #fff;
}
@media (min-width: 996px) {
  .project .faq__wrapper-content .item .myPanel p {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .project .faq__wrapper-content .item .myPanel p {
    font-size: 24px;
  }
}
.project .faq__wrapper-content .item .myPanel .icon-box {
  width: 15px;
}
@media (min-width: 996px) {
  .project .faq__wrapper-content .item .myPanel .icon-box {
    width: 18px;
  }
}
.project .faq__wrapper-content .item .myPanel .icon-box img:hover {
  cursor: pointer;
}
.project .faq__wrapper-content .item .toggle-content {
  display: none;
  font-size: 15px;
  color: #0095f2;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #0095f2;
  margin-top: 8px;
  padding: 10px;
}
@media (min-width: 996px) {
  .project .faq__wrapper-content .item .toggle-content {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .project .faq__wrapper-content .item .toggle-content {
    font-size: 20px;
  }
}
.project .forDec-wrapper {
  position: relative;
}
.project .forDec-wrapper .dec-01 {
  position: absolute;
  top: 0;
  width: 30%;
}
@media (min-width: 996px) {
  .project .forDec-wrapper .dec-01 {
    top: -25%;
    left: 0;
    width: auto;
  }
}
.project .forDec-wrapper .dec-01 figure {
  -webkit-animation: ripple 2s infinite ease-out;
          animation: ripple 2s infinite ease-out;
}
.project .forDec-wrapper .dec-01 figure:nth-child(1) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  opacity: 0;
}
.project .forDec-wrapper .dec-01 figure:nth-child(2) {
  position: absolute;
  top: 0;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.project .forDec-wrapper .dec-03 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 60%;
}
@media (min-width: 996px) {
  .project .forDec-wrapper .dec-03 {
    width: auto;
  }
}
.project .forDec-wrapper .dec-03 figure {
  -webkit-animation: ripple 2s infinite ease-out;
          animation: ripple 2s infinite ease-out;
}
.project .forDec-wrapper .dec-03 figure:nth-child(1) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0;
}
.project .forDec-wrapper .dec-03 figure:nth-child(2) {
  position: absolute;
  top: 0;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.project .forDec-wrapper .dec-03 figure:nth-child(3) {
  position: absolute;
  top: 0;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}/*# sourceMappingURL=main.css.map */