@charset "UTF-8";
.m-gnb {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 126px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  font-family: "SUITE Variable", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  transition: top 0.3s ease;
}
.header__bg {
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  transition: all 0.3s ease;
  border-top: 1px solid #ebeaef;
}
.header h1 {
  width: 193px;
  height: 40px;
  background: url(/logo-wh.png) no-repeat center center;
}
.header h1 > a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .gnb {
  height: 100%;
}
.header .gnb__link {
  display: flex;
  height: 100%;
}
.header .gnb__link > li {
  position: relative;
  width: 160px;
  height: 100%;
  text-align: center;
}
.header .gnb__link > li.over { /* hover 했을 시 */
  color: #00b7ce;
  font-weight: bold;
}
.header .gnb__link > li.over::after { /* 하단 바 */
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00b7ce;
}
.header .gnb__link > li.over .gnb__sublist {
  font-weight: 500;
}
.header .gnb__link > li.over .gnb__sublist li.over {
  color: #00b7ce;
}
.header .gnb__link > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 18px;
}
.header .gnb__link > li .gnb__sublist {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: calc(100% + 20px);
  color: #2e2f31;
  transition: all 0.2s ease;
}
.header .gnb__link > li .gnb__sublist > li {
  padding: 10px 0px;
  transition: all 0.3s ease;
}
.header .gnb__link > li .gnb__sublist > li > a > strong {
  display: block;
  font-size: 12px;
}
.header .tel {
  font-size: 24px;
  font-weight: bold;
}
.header.over { /* hover효과 */
  background-color: #fff;
  color: #2e2f31;
}
.header.over h1 {
  background: url(/logo-color.png);
}
.header.over .header__bg {
  background-color: #fff;
  width: 100%;
  height: calc(100% + 200px);
}
.header.over .gnb .gnb__link li .gnb__sublist {
  visibility: visible;
  opacity: 1;
}
.header.over .tel {
  color: #295d60;
}
.header.open { /* subpage 기본상태 */
  background-color: #fff !important;
  color: #2e2f31;
  border-bottom: 1px solid #ebeaef;
}
.header.open h1 {
  background: url(/logo-color.png);
}
.header.open h1 > a {
  display: block;
  width: 100%;
  height: 100%;
}
.header.open .tel {
  color: #295d60;
}
.header.scrolled {
  color: #2e2f31 !important;
  background-color: #fff;
}
.header.hidden {
  top: -150px;
}

.top {
  width: 1200px;
  height: 470px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 80px;
}
.top .title {
  font-family: "SUITE Variable", sans-serif;
}
.top .title__sub {
  color: #00b7ce;
  font-weight: 700;
  font-size: 20px;
}
.top .title__main {
  font-size: 65px;
  font-weight: 600;
  color: #1d1d1d;
}
.top .breadcrumb {
  color: #939d9e;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.top .breadcrumb__link {
  position: relative;
  display: block;
  margin-left: 20px;
}
.top .breadcrumb__link.home {
  width: 16px;
  height: 16px;
}
.top .breadcrumb__link.home > img {
  width: 100%;
  height: 100%;
}
.top .breadcrumb__link.active {
  color: #00b7ce;
}
.top .breadcrumb__link:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 8px;
  background-color: rgba(147, 157, 158, 0.4235294118);
}

.container h3 {
  position: relative;
  margin: 100px 20px 40px;
  font-weight: 600;
  display: inline-block;
}
.container h3::before {
  content: "";
  position: absolute;
  left: -20px;
  width: 6px;
  height: 100%;
  background-color: #00b7ce;
}

@media (max-width: 1300px) {
  .m-gnb__top.mover {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ebeaef;
  }
  .m-gnb__top.mover .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
  }
  .m-gnb__top.mover .m-gnb__top-trigger > span {
    background-color: #295d60;
  }
  .top {
    width: 100%;
    padding: 0 40px 80px;
  }
  .visual {
    height: 250px !important;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .m-gnb {
    display: block;
    position: fixed;
    z-index: 100000;
    width: 100%;
    overflow-y: auto;
    transition: 0.5s;
    /* open */
  }
  .m-gnb__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    transition: 0.3s;
  }
  .m-gnb__top-logo {
    width: 193px;
    height: 40px;
    background: url(/assets/img/logo-wh.png) no-repeat center center;
  }
  .m-gnb__top-logo > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .m-gnb__top-trigger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .m-gnb__top-trigger > span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .m-gnb__link {
    display: none;
  }
  .m-gnb .tel {
    display: none;
  }
  .m-gnb.open {
    background-color: #fff;
    height: 100vh;
  }
  .m-gnb.open .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
  }
  .m-gnb.open .m-gnb__top-trigger {
    position: relative;
  }
  .m-gnb.open .m-gnb__top-trigger > span {
    position: absolute;
    top: 50%;
    background-color: #295d60;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(1) {
    transform: rotate(45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(2) {
    display: none;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(3) {
    transform: rotate(-45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__link {
    display: flex;
    flex-wrap: wrap;
  }
  .m-gnb.open .m-gnb__link > li {
    width: 50%;
    font-size: 16px;
    padding: 0 30px;
  }
  .m-gnb.open .m-gnb__link > li > a {
    display: block;
    font-weight: 600;
    font-size: 20px;
    padding: 20px 0 16px 10px;
    border-bottom: 1px solid #ddd;
  }
  .m-gnb.open .m-gnb__sublist {
    margin-top: 10px;
  }
  .m-gnb.open .m-gnb__sublist > li {
    padding: 10px 10px;
  }
  .m-gnb.open .m-gnb__sublist > li > a > strong {
    font-weight: 500;
  }
  .m-gnb.open .tel {
    display: block;
    margin: 40px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    color: #295d60;
  }
  .header {
    display: none !important;
  }
}
@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .m-gnb {
    display: block;
    position: fixed;
    z-index: 100000;
    width: 100%;
    overflow-y: auto;
    transition: 0.5s;
    /* open */
  }
  .m-gnb__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
  }
  .m-gnb__top-logo {
    width: 143px;
    height: 40px;
    background: url(/assets/img/logo-wh.png) no-repeat center center;
    background-size: contain;
  }
  .m-gnb__top-logo > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .m-gnb__top-trigger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .m-gnb__top-trigger > span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .m-gnb__top.mover .m-gnb__top-logo {
    width: 143px !important;
    height: 40px !important;
    background-size: contain;
  }
  .m-gnb__link {
    display: none;
  }
  .m-gnb .tel {
    display: none;
  }
  .m-gnb.open {
    background-color: #fff;
    height: 100vh;
  }
  .m-gnb.open .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
    background-size: contain;
  }
  .m-gnb.open .m-gnb__top-trigger {
    position: relative;
  }
  .m-gnb.open .m-gnb__top-trigger > span {
    position: absolute;
    top: 50%;
    background-color: #295d60;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(1) {
    transform: rotate(45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(2) {
    display: none;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(3) {
    transform: rotate(-45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__link {
    display: block;
  }
  .m-gnb.open .m-gnb__link > li {
    font-size: 14px;
    padding: 0 14px;
  }
  .m-gnb.open .m-gnb__link > li > a {
    display: block;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0 16px 10px;
    border-bottom: 1px solid #ddd;
  }
  .m-gnb.open .m-gnb__sublist {
    margin-top: 10px;
  }
  .m-gnb.open .m-gnb__sublist > li {
    padding: 10px 10px;
  }
  .m-gnb.open .m-gnb__sublist > li > a > strong {
    font-weight: 500;
  }
  .m-gnb.open .tel {
    display: block;
    margin: 20px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    color: #295d60;
  }
  .header {
    display: none !important;
  }
}
#footer {
  color: #fff;
}

.footer {
  width: 100%;
  height: 540px;
  background-color: #000;
  padding: 80px;
  color: #e4e4f0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.footer__logo {
  width: 193px;
  height: 40px;
}
.footer hr {
  border: none;
  height: 1px;
  background-color: #545458;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 40px;
}
.footer__links {
  display: flex;
  align-items: center;
}
.footer__link {
  position: relative;
  margin: 20px;
  font-size: 14px;
}
.footer__link:not(:first-child):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #545458;
}
.footer__sitemap {
  display: flex;
}
.footer__sitemap-list {
  margin-right: 40px;
}
.footer__sitemap-list > li {
  margin-bottom: 10px;
}
.footer__select {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Pretendard Variable", sans-serif;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.178);
  color: #fff;
}
.footer__select > option {
  background-color: #2d2d2d;
  padding: 10px;
}

@media (min-width: 768px) and (max-width: 1300px) {
  .footer {
    height: 440px;
    padding: 60px;
  }
  .footer__sitemap {
    font-size: 14px;
  }
  .footer__bottom {
    padding-top: 30px;
    flex-direction: column;
  }
  .footer__select {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    height: 250px;
    padding: 20px;
  }
  .footer__inner > hr {
    display: none;
  }
  .footer__links {
    align-items: end;
    flex-direction: column;
  }
  .footer__link {
    margin: 0;
    margin-top: 10px;
  }
  .footer__link:not(:first-child):before {
    display: none;
  }
  .footer__top {
    align-items: start;
  }
  .footer__sitemap {
    display: none;
  }
  .footer__bottom {
    padding-top: 0;
    justify-content: end;
  }
  .footer__logo {
    width: 143px;
    height: 40px;
  }
  .footer__logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
#fullpage {
  /* section 03 */
  /* section 04 - banner */
}
#fullpage .main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#fullpage .main .main__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
#fullpage .main .main__bg-video > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
#fullpage .main .main__bg-video-mobile {
  display: none;
}
#fullpage .project {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#fullpage .project__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  background-color: #e6f4f1;
}
#fullpage .project__container {
  width: 90%;
  height: 600px;
  margin: auto;
  color: #333b3b !important;
  display: flex;
  justify-content: center;
}
#fullpage .project__container .tab {
  font-size: 16px;
  font-family: "SUITE Variable", sans-serif;
  margin-top: 95px;
  margin-right: 70px;
}
#fullpage .project__container .tab > li {
  width: 200px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(88, 92, 92, 0.1921568627);
  cursor: pointer;
}
#fullpage .project__container .tab > li.active {
  color: #fff;
  background-color: #0ec9ca;
  font-weight: 600;
  border-bottom: none;
}
#fullpage .project__container .bx-wrapper {
  width: 1280px;
  height: 100%;
  background: none;
  border: none;
  box-shadow: none;
}
#fullpage .project__container .bx-wrapper .bx-viewport {
  width: 100%;
  height: 100%;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider {
  width: 100%;
  height: 100%;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li {
  position: relative;
  width: 100% !important;
  height: 100%;
  display: flex !important;
  justify-content: space-between;
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li.active-slide {
  opacity: 1 !important;
  pointer-events: auto;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox {
  margin-top: 80px;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox .tit1 {
  position: relative;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox .tit1::before {
  content: "PROJECT";
  position: absolute;
  bottom: 100%;
  font-size: 16px;
  color: #00b7ce;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox .tit2 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7 !important;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .bx-img {
  width: 700px;
  height: 100%;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .thumb-img {
  position: absolute;
  top: 70%;
  display: flex;
}
#fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .thumb-img > div {
  margin-right: 10px;
  width: 200px;
  height: 130px;
  background-color: #00b7ce;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction > a {
  margin-top: 0;
  top: 58% !important;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction > a.bx-next {
  right: auto !important;
  left: 110px;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction .pagination {
  position: absolute;
  top: 58.5%;
  left: 50px;
  margin: 0 10px;
  display: inline-block;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction .detail-link {
  position: absolute;
  top: 58%;
  left: 160px;
  border: 1px solid #0ec9ca;
  border-radius: 20px;
  width: 140px;
  height: 33px;
  color: #0ec9ca;
  transition: 0.3s;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction .detail-link:hover {
  background-color: #0ec9ca;
  color: #fff;
}
#fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction .detail-link > a {
  top: 0 !important;
  width: inherit !important;
  height: inherit !important;
  text-indent: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fullpage .project__container .bx-wrapper .bx-pager {
  display: none;
  bottom: 20px !important;
  right: 350px !important;
  width: auto !important;
}
#fullpage .sale-info {
  height: 100vh;
}
#fullpage .sale-info__title {
  position: relative;
  font-family: "SUITE Variable", sans-serif;
  font-size: 40px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 10px 16px;
}
#fullpage .sale-info__title > strong {
  font-size: 16px;
  color: #00b7ce;
  font-weight: 600;
  font-family: "Pretendard Variable", sans-serif;
  text-transform: uppercase;
}
#fullpage .sale-info__list {
  width: 100%;
  height: 640px;
  display: flex;
}
#fullpage .sale-info__list .unit-card {
  position: relative;
  width: calc((100% - 96px) / 2);
  height: 100%;
  margin: 0 16px;
  transition: 0.8s;
  color: #fff;
  padding: 90px 60px 0;
  overflow: hidden;
}
#fullpage .sale-info__list .unit-card:nth-child(1) {
  background: url("/assets/img/sale-info-ver2-01.jpg") center center/115% no-repeat;
}
#fullpage .sale-info__list .unit-card:nth-child(2) {
  background: url("/assets/img/sale-info-ver2-02.jpg") center center/115% no-repeat;
}
#fullpage .sale-info__list .unit-card:nth-child(3) {
  background: url("/assets/img/sale-info-03.png") center center/115% no-repeat;
}
#fullpage .sale-info__list .unit-card:hover {
  background-size: 105%;
}
#fullpage .sale-info__list .unit-card:hover .unit-card__btn {
  background-color: #04c3ce;
}
#fullpage .sale-info__list .unit-card:hover .unit-card__gong > a {
  bottom: 40px;
  opacity: 1;
}
#fullpage .sale-info__list .unit-card:hover .unit-card__line {
  opacity: 1;
}
#fullpage .sale-info__list .unit-card:hover .unit-card__line--left,
#fullpage .sale-info__list .unit-card:hover .unit-card__line--right {
  height: 100%;
}
#fullpage .sale-info__list .unit-card:hover .unit-card__line--top,
#fullpage .sale-info__list .unit-card:hover .unit-card__line--bottom {
  width: 100%;
}
#fullpage .sale-info__list .unit-card__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
#fullpage .sale-info__list .unit-card__desc {
  font-weight: 200;
}
#fullpage .sale-info__list .unit-card__btn {
  position: absolute;
  top: 100px;
  right: 60px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #00b7ce;
  transition: 0.3s;
  cursor: pointer;
}
#fullpage .sale-info__list .unit-card__btn > a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fullpage .sale-info__list .unit-card__gong > a {
  position: absolute;
  opacity: 0;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  width: 320px;
  height: 70px;
  background-color: #fff;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #174778;
  font-weight: 700;
  font-size: 20px;
  transition: 0.6s;
}
#fullpage .sale-info__list .unit-card__gong > a > img {
  width: 50px;
  margin-right: 6px;
}
#fullpage .sale-info__list .unit-card__line {
  position: absolute;
  display: block;
  background-color: #00f2ff;
  transition: 0.3s;
  opacity: 0;
}
#fullpage .sale-info__list .unit-card__line--left {
  width: 2px;
  height: 0;
  top: 0;
  left: 0;
}
#fullpage .sale-info__list .unit-card__line--bottom {
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
}
#fullpage .sale-info__list .unit-card__line--right {
  width: 2px;
  height: 0;
  bottom: 0;
  right: 0;
}
#fullpage .sale-info__list .unit-card__line--top {
  width: 0;
  height: 2px;
  top: 0;
  right: 0;
}
#fullpage .main-banner {
  height: auto !important;
  min-height: unset !important;
}
#fullpage .main-banner__container {
  height: 280px;
  display: flex;
}
#fullpage .main-banner__container > div {
  width: 50%;
  height: 100%;
  transition: 0.8s;
}
#fullpage .main-banner__container > div > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#fullpage .main-banner__container > div > a > .big {
  font-size: 32px;
  font-weight: 500;
  margin-left: 20px;
}
#fullpage .main-banner__container > div:hover {
  background-size: 120%;
}
#fullpage .main-banner__intro {
  background: url(../img/banner-02.png) no-repeat center center;
  background-size: 140%;
}
#fullpage .main-banner__contact {
  background: url(../img/banner-01.png) no-repeat center center;
  background-size: 140%;
  text-align: left;
  font-size: 28px;
}
#fullpage .main-banner__contact > a {
  flex-direction: column;
}
#fullpage .main-banner__contact > a > span {
  display: block;
  width: 300px;
}
#fullpage .main-banner__contact > a > span:nth-child(1) {
  font-size: 16px;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1300px) {
  #fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction > a {
    top: 70% !important;
  }
  #fullpage .project__bg {
    display: none;
    z-index: -1;
  }
  #fullpage .project__container {
    margin-top: 50px !important;
    height: auto;
    width: 80%;
    display: block;
    margin: auto;
  }
  #fullpage .project__container > .tab {
    display: flex;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  #fullpage .project__container > .tab > li {
    border-bottom: none;
  }
  #fullpage .project__container .bx-wrapper {
    height: auto;
    margin-bottom: 0 !important;
  }
  #fullpage .project__container .bx-wrapper .bx-controls-direction > a,
  #fullpage .project__container .bx-wrapper .bx-controls-direction .pagination,
  #fullpage .project__container .bx-wrapper .bx-controls-direction .detail-link {
    top: 70% !important;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport {
    height: 400px;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider {
    height: auto;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li {
    height: auto;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li .thumb-img {
    display: none;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li .thumb-img > div {
    width: 160px;
    height: auto;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li .bx-img {
    width: 55%;
    height: 85%;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li .textBox {
    margin-top: 40px;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider > li .textBox .tit1 {
    font-size: 40px;
  }
  #fullpage .sale-info {
    width: 90%;
    align-items: center;
    margin-top: 80px !important;
  }
  #fullpage .sale-info > .fp-overflow {
    width: 100%;
  }
  #fullpage .sale-info__list {
    height: 440px !important;
  }
  #fullpage .sale-info__list .unit-card {
    width: 50%;
    padding: 50px;
  }
  #fullpage .sale-info__list .unit-card__btn {
    top: 50px;
    right: 40px;
    width: 60px;
    height: 60px;
  }
  #fullpage .sale-info__list .unit-card__title {
    font-size: 28px;
  }
  #fullpage .main-banner__container {
    height: 150px;
  }
  #fullpage .main-banner__container .big {
    font-size: 24px !important;
    margin-left: 10px !important;
  }
  #fullpage .main-banner__contact {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #fullpage .project__container .bx-wrapper .bx-controls .bx-controls-direction > a {
    top: 41% !important;
  }
  #fullpage .sale-info__list .unit-card:hover .unit-card__gong > a {
    bottom: 10px !important;
  }
  #fullpage .main .main__bg-video {
    display: none;
  }
  #fullpage .main .main__bg-video-mobile {
    display: block;
  }
  #fullpage .main .main__bg-video-mobile > video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
  }
  #fullpage .project__bg {
    display: none;
  }
  #fullpage .project__container > .tab {
    display: none;
  }
  #fullpage .project__container .bx-wrapper .bx-controls-direction > a,
  #fullpage .project__container .bx-wrapper .bx-controls-direction .pagination,
  #fullpage .project__container .bx-wrapper .bx-controls-direction .detail-link {
    top: 41% !important;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider li {
    flex-direction: column;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox .tit1 {
    font-size: 32px;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .textBox .tit2 {
    font-size: 16px;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .bx-img {
    width: 100%;
    height: 300px;
  }
  #fullpage .project__container .bx-wrapper .bx-viewport .bxslider li .thumb-img {
    display: none;
  }
  #fullpage .sale-info {
    width: 90%;
    margin: auto;
    padding-top: 50px;
  }
  #fullpage .sale-info__title {
    padding: 0;
    font-size: 32px;
  }
  #fullpage .sale-info__list {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  #fullpage .sale-info__list .unit-card {
    width: 100%;
    height: 200px;
    padding: 20px;
    margin: 0;
  }
  #fullpage .sale-info__list .unit-card__title {
    font-size: 24px;
  }
  #fullpage .sale-info__list .unit-card__desc {
    font-size: 14px;
  }
  #fullpage .sale-info__list .unit-card__btn {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  #fullpage .sale-info__list .unit-card__gong > a {
    width: 240px;
    height: 40px;
    font-size: 16px;
  }
  #fullpage .sale-info__list .unit-card__gong > a > img {
    width: 40px;
  }
  #fullpage .main-banner__container {
    height: auto;
    flex-direction: column;
  }
  #fullpage .main-banner__container > div {
    width: 100%;
    height: 130px;
  }
  #fullpage .main-banner__container > div > a .big {
    font-size: 20px;
    margin-left: 10px;
  }
  #fullpage .main-banner__contact {
    font-size: 20px;
  }
  #fullpage .main-banner__contact > a > span {
    width: auto;
  }
}