.displayResposive {
  display: none;
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .displayResposive.show-xs {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .displayResposive.show-sm {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .displayResposive.show-md {
    display: block;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .displayResposive.show-lg {
    display: block;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .displayResposive.show-xl {
    display: block;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1920px) {
  .displayResposive.show-xxl {
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .displayResposive.show-3xl {
    display: block;
  }
}

html.debugMode:before {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 5px;
  top: 5px;
  background: red;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
html.debugMode:after {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 40px;
  top: 5px;
  background: blue;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media screen and (min-width: 1px) {
  html.debugMode:after {
    content: "xs";
    display: flex;
  }
}
@media screen and (min-width: 577px) {
  html.debugMode:after {
    content: "sm";
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  html.debugMode:after {
    content: "md";
    display: flex;
  }
}
@media screen and (min-width: 993px) {
  html.debugMode:after {
    content: "lg";
    display: flex;
  }
}
@media screen and (min-width: 1201px) {
  html.debugMode:after {
    content: "xl";
    display: flex;
  }
}
@media screen and (min-width: 1401px) {
  html.debugMode:after {
    content: "xxl";
    display: flex;
  }
}
@media screen and (min-width: 1921px) {
  html.debugMode:after {
    content: "3xl";
    display: flex;
  }
}
@media screen and (min-width: 2561px) {
  html.debugMode:after {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 2559px) {
  html.debugMode:before {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 1919px) {
  html.debugMode:before {
    content: "3xl";
    display: flex;
  }
}
@media screen and (max-width: 1399px) {
  html.debugMode:before {
    content: "xxl";
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  html.debugMode:before {
    content: "xl";
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  html.debugMode:before {
    content: "lg";
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  html.debugMode:before {
    content: "md";
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  html.debugMode:before {
    content: "sm";
    display: flex;
  }
}
@media screen and (max-width: -1px) {
  html.debugMode:before {
    content: "xs";
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  header .mobileMenuOpen {
    display: block;
  }
  header .normalMenu .headerMenu {
    display: none;
  }
  header .normalMenu .rightMenu {
    margin-left: auto;
  }
  header .normalMenu .rightMenu .buttons {
    display: none;
  }
  header .normalMenu .rightMenu .buttons .catalogBtn,
  header .normalMenu .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
  header .mobileMenu .rightMenu {
    display: block;
  }
  header .mobileMenu .rightMenu .buttons .catalogBtn,
  header .mobileMenu .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
  header .mobileMenu .rightMenu .buttons .defaultBtn {
    display: none;
  }
  header .mobileMenu .rightMenu .rightImg {
    display: none;
  }
  .getInfo {
    display: block;
  }
  .infoPopup {
    align-items: flex-start;
    height: 100vh;
    max-height: 100%;
    overflow-y: scroll;
  }
  .infoPopup .popupContent .titleArea {
    padding: 25px 20px;
  }
  .infoPopup .popupContent .titleArea .icon {
    width: 60px;
    height: 60px;
  }
  .infoPopup .popupContent .titleArea .title {
    font-size: 30px;
  }
  .infoPopup .popupContent .titleArea .closeBtn {
    top: 10px;
    right: 10px;
  }
  .infoPopup .popupContent .content {
    padding: 20px 10px 36px 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  header .mobileMenuOpen {
    display: block;
  }
  header .normalMenu .headerMenu {
    display: none;
  }
  header .normalMenu .rightMenu {
    margin-left: auto;
  }
  header .normalMenu .rightMenu .buttons {
    display: none;
  }
  header .normalMenu .rightMenu .buttons .catalogBtn,
  header .normalMenu .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
  header .normalMenu .rightMenu .buttons .defaultBtn {
    display: none;
  }
  header .mobileMenu .rightMenu {
    display: block;
  }
  header .mobileMenu .rightMenu .rightImg {
    display: none;
  }
  .getInfo {
    display: block;
  }
  .infoPopup {
    align-items: flex-start;
    height: 100vh;
    max-height: 100%;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  header .mobileMenuOpen {
    display: block;
  }
  header .normalMenu .headerMenu {
    display: none;
  }
  header .normalMenu .rightMenu {
    margin-left: auto;
  }
  header .normalMenu .rightMenu .buttons .catalogBtn,
  header .normalMenu .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
  header .normalMenu .rightMenu .buttons .defaultBtn {
    display: none;
  }
  header .mobileMenu .rightMenu {
    display: none;
  }
  .getInfo {
    display: block;
  }
  .infoPopup {
    align-items: flex-start;
    height: 100vh;
    max-height: 100%;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  header .mobileMenuOpen {
    display: block;
  }
  header .normalMenu .headerMenu {
    display: none;
  }
  header .normalMenu .rightMenu {
    margin-left: auto;
  }
  header .normalMenu .rightMenu .buttons .catalogBtn,
  header .normalMenu .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
  header .mobileMenu .rightMenu {
    display: none;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  header .rightMenu .buttons {
    align-items: flex-end;
    flex-direction: column;
  }
  header .rightMenu .buttons .catalogBtn,
  header .rightMenu .buttons .defaultBtn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 576px) {
  .footerTop .brands {
    flex-wrap: wrap;
    gap: 25px 30px;
  }
  .footerTop .brands .item {
    scale: 0.7;
  }
  footer {
    padding: 70px 0 140px;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  footer .container:after {
    max-width: calc(100% - 170px);
    bottom: -30px;
    left: 20px;
  }
  footer .container .border {
    right: 20px;
    bottom: -30px;
  }
  footer .leftArea .logoArea {
    justify-content: center;
  }
  footer .leftArea .logoArea img:last-child {
    display: none;
  }
  footer .leftArea .address {
    text-align: center;
  }
  footer .leftArea .phone {
    justify-content: center;
  }
  footer .rightArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  footer .rightArea .imgT7 {
    margin: 0;
  }
  footer .rightArea .text {
    margin: 0;
    text-align: center;
  }
  footer .rightArea .icon {
    transform: translateY(100px);
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .footerTop .brands {
    flex-wrap: wrap;
    gap: 25px 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .footerTop .brands {
    flex-wrap: wrap;
    gap: 25px 30px;
  }
}
@media screen and (max-width: 576px) {
  .yediVadiText.leaf:after {
    width: 38px;
    height: 34px;
  }
  .yediVadiText.leaf:before {
    bottom: -46%;
    width: 25px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .yediVadiText.leaf:after {
    width: 84px;
    height: 77px;
  }
  .yediVadiText.leaf:before {
    bottom: 3%;
    width: 43px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .yediVadiText.leaf:after {
    width: 84px;
    height: 77px;
  }
  .yediVadiText.leaf:before {
    bottom: 3%;
    width: 43px;
  }
}
@media screen and (max-width: 576px) {
  .pageTitleArea2 {
    text-align: center;
  }
  .pageTitleArea2 .title {
    font-size: 38px;
  }
  .pageTitleArea2 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2 .container {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .pageTitleArea2.type5, .pageTitleArea2.type4 {
    text-align: center;
  }
  .pageTitleArea2.type5 .title, .pageTitleArea2.type4 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type5 .text, .pageTitleArea2.type4 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type2 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type2 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type2 .title.little {
    font-size: 31px;
  }
  .pageTitleArea2.type2 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type3 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type3 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 .rightArea .features {
    justify-content: center;
  }
  .pageTitleArea2.type3 .rightArea .features .featureItem span {
    padding: 10px;
    font-size: 16px;
  }
  .pageTitleArea2.type3:before {
    bottom: 50%;
    right: 3%;
  }
  .pageTitleArea {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
    padding: 20px 0;
  }
  .pageTitleArea .title {
    font-size: 38px;
    text-align: center;
    line-height: 48px;
  }
  .pageTitleArea .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea .stats .statItem {
    font-size: 14px;
    padding: 10px 6px;
  }
  .pageTitleArea.mainType {
    margin: 0 0 50px;
  }
  .pageTitleArea.mainType .title {
    font-size: 38px;
    line-height: 48px;
  }
  .pageTitleArea.mainType .text {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .pageTitleArea2 {
    text-align: center;
  }
  .pageTitleArea2 .title {
    font-size: 38px;
  }
  .pageTitleArea2 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2 .container {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .pageTitleArea2.type5, .pageTitleArea2.type4 {
    text-align: center;
  }
  .pageTitleArea2.type5 .title, .pageTitleArea2.type4 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type5 .text, .pageTitleArea2.type4 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type2 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type2 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type2 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type3 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type3 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 .rightArea .features {
    justify-content: center;
  }
  .pageTitleArea2.type3 .rightArea .features .featureItem span {
    padding: 10px;
  }
  .pageTitleArea {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
    padding: 20px 0;
  }
  .pageTitleArea .title {
    font-size: 38px;
    text-align: center;
    line-height: 48px;
  }
  .pageTitleArea .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea.mainType {
    margin: 0 0 50px;
  }
  .pageTitleArea.mainType .title {
    font-size: 38px;
    line-height: 48px;
  }
  .pageTitleArea.mainType .text {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .pageTitleArea2 .title {
    font-size: 38px;
  }
  .pageTitleArea2 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type5 .title, .pageTitleArea2.type4 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type5 .text, .pageTitleArea2.type4 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type2 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type2 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type2 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type3 .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .pageTitleArea2.type3 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type3 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 .rightArea .features {
    justify-content: center;
  }
  .pageTitleArea2.type3 .rightArea .features .featureItem span {
    padding: 10px;
  }
  .pageTitleArea {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
    padding: 20px 0;
  }
  .pageTitleArea .title {
    font-size: 38px;
    text-align: center;
    line-height: 48px;
  }
  .pageTitleArea .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea.mainType {
    margin: 0 0 50px;
  }
  .pageTitleArea.mainType .title {
    font-size: 38px;
    line-height: 48px;
  }
  .pageTitleArea.mainType .text {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .pageTitleArea2 .title {
    font-size: 43px;
  }
  .pageTitleArea2 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type5 .title, .pageTitleArea2.type4 .title {
    font-size: 43px;
  }
  .pageTitleArea2.type5 .text, .pageTitleArea2.type4 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type3 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type3 .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .pageTitleArea2.type3 .title {
    font-size: 38px;
  }
  .pageTitleArea2.type3 .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea2.type3 .rightArea .features {
    justify-content: center;
  }
  .pageTitleArea2.type3 .rightArea .features .featureItem span {
    padding: 10px;
  }
  .pageTitleArea2.type2 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pageTitleArea2.type2 .title {
    font-size: 43px;
  }
  .pageTitleArea2.type2 .text {
    font-size: 22px;
  }
  .pageTitleArea {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
    padding: 20px 0;
  }
  .pageTitleArea .title {
    font-size: 38px;
    text-align: center;
    line-height: 48px;
  }
  .pageTitleArea .text {
    font-size: 22px;
    text-align: center;
  }
  .pageTitleArea.mainType {
    margin: 0 0 50px;
  }
  .pageTitleArea.mainType .title {
    font-size: 38px;
    line-height: 48px;
  }
  .pageTitleArea.mainType .text {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .pageTitleArea2 .title {
    font-size: 48px;
  }
  .pageTitleArea2 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type5 .title, .pageTitleArea2.type4 .title {
    font-size: 48px;
  }
  .pageTitleArea2.type5 .text, .pageTitleArea2.type4 .text {
    font-size: 22px;
  }
  .pageTitleArea2.type2 {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  section.mainSlideCards {
    margin-bottom: 80px;
  }
  section.mainSlide .bottomText {
    padding: 20px;
  }
  section.mainSlide .bottomText .text {
    font-size: 23px;
  }
  section.mainSlide .bottomText .container {
    flex-direction: column-reverse;
  }
  section.mainTime {
    padding: 40px 20px;
  }
  section.mainTime .title {
    font-size: 30px;
  }
  section.mainTime .text {
    margin: 30px auto;
    font-size: 17px;
  }
  section.mainTime .bottomItems {
    flex-direction: column;
    background: #fff;
    z-index: 2;
    position: relative;
  }
  section.mainTime .bottomItems .item {
    padding: 12px;
    border-bottom: 1px solid #7C7063;
    justify-content: center;
    border-right: 0;
    width: 100%;
    display: flex;
    text-align: center;
  }
  section.mainTime .lines {
    max-width: calc(100% - 52px);
  }
  section.mainCorporate {
    padding-bottom: 100px;
  }
  section.mainCorporate .leftImgArea {
    display: none;
  }
  section.mainCorporate .corporateMobileSlide {
    display: block;
  }
  section.mainCorporate .content {
    margin: 60px 0 0;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.mainTime {
    padding: 40px 20px;
  }
  section.mainTime .title {
    font-size: 30px;
  }
  section.mainTime .text {
    margin: 30px auto;
    font-size: 17px;
  }
  section.mainTime .bottomItems {
    flex-direction: column;
    background: #fff;
    z-index: 2;
    position: relative;
  }
  section.mainTime .bottomItems .item {
    padding: 12px;
    border-bottom: 1px solid #7C7063;
    justify-content: center;
    border-right: 0;
    width: 100%;
    display: flex;
    text-align: center;
  }
  section.mainTime .lines {
    max-width: calc(100% - 52px);
  }
  section.mainCorporate .leftImgArea {
    margin-bottom: 100px;
  }
  section.mainCorporate .leftImgArea:before {
    bottom: -74px;
    left: 0;
    right: auto;
    transform: none;
    aspect-ratio: 707/421;
    max-width: 317px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.mainTime {
    padding: 40px 20px;
  }
  section.mainTime .title {
    font-size: 30px;
  }
  section.mainTime .text {
    margin: 30px auto;
    font-size: 17px;
  }
  section.mainTime .bottomItems {
    background: #fff;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
  }
  section.mainTime .bottomItems .item {
    padding: 12px;
    text-align: center;
  }
  section.mainTime .bottomItems .item:nth-child(2) {
    border-right: 0;
  }
  section.mainTime .bottomItems .item:last-child {
    width: 100%;
    border-top: 2px solid #7C7063;
  }
  section.mainTime .lines {
    max-width: calc(100% - 52px);
  }
  section.mainCorporate .leftImgArea {
    margin-bottom: 100px;
  }
  section.mainCorporate .leftImgArea:before {
    bottom: -74px;
    left: 0;
    right: auto;
    transform: none;
    aspect-ratio: 707/421;
    max-width: 317px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .editorContentArea {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .galleryBtn span {
    font-size: 15px;
    width: 165px;
  }
  .featureBtn span {
    font-size: 14px;
    padding: 11px 10px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .featureBtn span {
    font-size: 14px;
    padding: 11px 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .featureBtn span {
    font-size: 14px;
    padding: 11px 10px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .featureBtn span {
    font-size: 14px;
    padding: 11px 10px;
  }
}
@media screen and (max-width: 576px) {
  .locateCard {
    padding: 20px 45px 20px 20px;
  }
  .locateCard .advantage {
    display: none;
  }
  .unitCard {
    padding: 20px 25px 35px;
  }
  .unitCard .unitRoom {
    font-size: 26px;
    padding: 10px 15px;
    transform: none;
  }
  .unitCard .name {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .socialCard {
    flex-direction: column-reverse;
  }
  .socialCard .imgArea {
    aspect-ratio: unset;
    height: 300px;
  }
  .socialCard .imgArea .number {
    right: 15px;
    bottom: 0px;
    font-size: 80px;
  }
  .socialCard .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .socialCard .cardContent .title {
    padding: 20px;
    font-size: 22px;
  }
  .socialCard .cardContent .content {
    padding: 20px;
    gap: 25px;
  }
  .projectDetailCard {
    max-width: 245px;
    padding: 20px;
  }
  .projectDetailCard .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .locateCard {
    padding: 20px 45px 20px 20px;
  }
  .locateCard .advantage {
    display: none;
  }
  .unitCard {
    padding: 20px 25px 35px;
  }
  .unitCard .unitRoom {
    font-size: 26px;
    padding: 10px 15px;
    transform: none;
  }
  .unitCard .name {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .socialCard {
    flex-direction: column-reverse;
  }
  .socialCard .imgArea {
    aspect-ratio: unset;
    height: 300px;
    max-width: 100%;
  }
  .socialCard .imgArea .number {
    right: 15px;
    bottom: 0px;
    font-size: 80px;
  }
  .socialCard .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .socialCard .cardContent .title {
    padding: 20px;
    font-size: 22px;
  }
  .socialCard .cardContent .content {
    padding: 20px;
    gap: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .unitCard {
    padding: 20px 25px 35px;
  }
  .unitCard .unitRoom {
    font-size: 26px;
    padding: 10px 15px;
    transform: none;
  }
  .unitCard .name {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .socialCard .imgArea {
    aspect-ratio: unset;
  }
  .socialCard .imgArea .number {
    right: 15px;
    bottom: 0px;
    font-size: 80px;
  }
  .socialCard .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .socialCard .cardContent .title {
    padding: 50px 30px;
    font-size: 32px;
  }
  .socialCard .cardContent .content {
    padding: 50px 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .unitCard {
    padding: 20px 25px 35px;
  }
  .unitCard .unitRoom {
    font-size: 26px;
    padding: 10px 15px;
    transform: none;
  }
  .unitCard .name {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .socialCard .imgArea {
    aspect-ratio: unset;
  }
  .socialCard .imgArea .number {
    right: 15px;
    bottom: 0px;
    font-size: 80px;
  }
  .socialCard .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .socialCard .cardContent .title {
    padding: 50px 30px;
    font-size: 32px;
  }
  .socialCard .cardContent .content {
    padding: 50px 30px;
  }
  section.projectDetail .gridArea .grid {
    grid-template-rows: repeat(2, 155.5px);
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .socialCard .imgArea {
    aspect-ratio: unset;
  }
  .socialCard .imgArea .number {
    right: 15px;
    bottom: 0px;
    font-size: 80px;
  }
  .socialCard .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .socialCard .cardContent .title {
    padding: 50px 30px;
    font-size: 32px;
  }
  .socialCard .cardContent .content {
    padding: 50px 30px;
  }
  .projectDetailCard {
    padding: 20px;
  }
  .projectDetailCard .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  section.contact .contactArea .contactInfo {
    border-right: 0;
    border-bottom: 1px solid #B9B9B9;
  }
  section.contact .contactArea .contactInfo .titleArea {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content .double {
    gap: 25px;
    flex-wrap: wrap;
  }
  section.contact .contactArea .contactMap .map {
    width: 100%;
    min-height: 390px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.contact .contactArea .contactInfo {
    border-right: 0;
    border-bottom: 1px solid #B9B9B9;
  }
  section.contact .contactArea .contactInfo .titleArea {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content .double {
    gap: 25px;
    flex-wrap: wrap;
  }
  section.contact .contactArea .contactMap .map {
    width: 100%;
    min-height: 390px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.contact .contactArea .contactInfo .titleArea {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content .double {
    gap: 25px;
    flex-wrap: wrap;
  }
  section.contact .contactArea .contactMap .map {
    width: 100%;
    min-height: 390px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.contact .contactArea .contactInfo .titleArea {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content {
    padding: 20px;
  }
  section.contact .contactArea .contactInfo .content .double {
    gap: 25px;
    flex-wrap: wrap;
  }
  section.contact .contactArea .contactMap .map {
    width: 100%;
    min-height: 390px;
  }
}
@media screen and (max-width: 576px) {
  section.creators .bottomText {
    margin: 30px 0 55px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.creators .bottomText {
    margin: 30px 0 55px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.creators .bottomText {
    margin: 30px 0 55px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.creators .bottomText {
    margin: 30px 0 55px;
  }
}
@media screen and (max-width: 576px) {
  section.locate .locateCardTextArea {
    align-items: center;
  }
  section.locate .locateCardTextArea .text {
    text-align: center;
    font-size: 22px;
  }
  section.locate .mapImgArea {
    margin: 40px 0;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.locate .locateCardTextArea {
    align-items: center;
  }
  section.locate .locateCardTextArea .text {
    text-align: center;
    font-size: 22px;
  }
  section.locate .mapImgArea {
    margin: 40px 0;
  }
}
@media screen and (max-width: 576px) {
  section.unitType .diffrentLife {
    margin-bottom: 25px;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  section.unitType .diffrentLife .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.unitType .diffrentLife .titleArea .title {
    font-size: 26px;
    text-align: center;
  }
  section.unitType .diffrentLife .titleArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.unitDetail .unitDetailMarkerArea {
    margin-top: 200px;
  }
  section.unitDetail .unitDetailMarkerArea .marker {
    width: 35px;
    height: 35px;
  }
  section.unitDetail .unitDetailMarkerArea .markerContent {
    width: 285px;
    top: -5px !important;
    left: 50% !important;
    transform: translate(-50%, -100%);
  }
  section.unitDetail .whyUnit .content .list {
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.unitDetail .whyUnit .content .list::-webkit-scrollbar {
    display: none;
  }
  section.unitDetail .whyUnit .content .list .item {
    padding: 20px;
    min-width: 220px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.unitType .diffrentLife {
    margin-bottom: 25px;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  section.unitType .diffrentLife .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.unitType .diffrentLife .titleArea .title {
    font-size: 26px;
    text-align: center;
  }
  section.unitType .diffrentLife .titleArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.unitDetail .unitDetailMarkerArea {
    margin-top: 200px;
  }
  section.unitDetail .unitDetailMarkerArea .marker {
    width: 35px;
    height: 35px;
  }
  section.unitDetail .unitDetailMarkerArea .markerContent {
    width: 285px;
    top: -5px !important;
    left: 50% !important;
    transform: translate(-50%, -100%);
  }
  section.unitDetail .whyUnit .content .list {
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.unitDetail .whyUnit .content .list::-webkit-scrollbar {
    display: none;
  }
  section.unitDetail .whyUnit .content .list .item {
    padding: 20px;
    min-width: 220px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.unitType .diffrentLife {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
  }
  section.unitType .diffrentLife .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.unitType .diffrentLife .titleArea .title {
    font-size: 26px;
    text-align: center;
  }
  section.unitType .diffrentLife .titleArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.unitDetail .whyUnit .content .list {
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  section.unitDetail .whyUnit .content .list::-webkit-scrollbar {
    display: none;
  }
  section.unitDetail .whyUnit .content .list .item {
    padding: 20px;
    min-width: 220px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.unitType .diffrentLife {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
  }
  section.unitType .diffrentLife .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.unitType .diffrentLife .titleArea .title {
    font-size: 26px;
    text-align: center;
  }
  section.unitType .diffrentLife .titleArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  section.unitType .diffrentLife {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
  }
  section.unitType .diffrentLife .imgArea img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.unitType .diffrentLife .titleArea .title {
    font-size: 26px;
    text-align: center;
  }
  section.unitType .diffrentLife .titleArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .text {
    text-align: center;
  }
  section.unitType .diffrentLife .rightArea .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  section.social .myVerticalSwiper {
    max-height: 1500px;
  }
  section.social .socialBanner {
    min-height: 365px;
  }
  section.social .socialBanner .content {
    padding: 20px;
    flex-direction: column-reverse;
  }
  section.social .socialBanner .content .text {
    text-align: center;
    font-size: 22px;
  }
  section.social .socialBanner .content .discover {
    align-items: center;
    gap: 25px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.social .myVerticalSwiper {
    max-height: 1500px;
  }
  section.social .socialBanner {
    min-height: 365px;
  }
  section.social .socialBanner .content {
    padding: 20px;
    flex-direction: column-reverse;
  }
  section.social .socialBanner .content .text {
    text-align: center;
    font-size: 22px;
  }
  section.social .socialBanner .content .discover {
    align-items: center;
    gap: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.social .socialBanner {
    min-height: 365px;
  }
  section.social .socialBanner .content {
    padding: 20px;
    flex-direction: column-reverse;
  }
  section.social .socialBanner .content .text {
    text-align: center;
    font-size: 22px;
  }
  section.social .socialBanner .content .discover {
    align-items: center;
    gap: 25px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.social .socialBanner {
    min-height: 365px;
  }
  section.social .socialBanner .content {
    padding: 20px;
  }
  section.social .socialBanner .content .text {
    font-size: 22px;
  }
  section.social .socialBanner .content .discover {
    gap: 25px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  section.social .socialBanner {
    min-height: 365px;
  }
  section.social .socialBanner .content {
    padding: 20px;
  }
  section.social .socialBanner .content .text {
    font-size: 22px;
  }
  section.social .socialBanner .content .discover {
    gap: 25px;
  }
}
@media screen and (max-width: 576px) {
  section.projectDetail .gridArea {
    display: none;
  }
  section.projectDetail .feelGood {
    padding: 50px 0;
    margin-bottom: 100px;
  }
  section.projectDetail .feelGood .titleArea .title {
    font-size: 32px;
  }
  section.projectDetail .littleSteps {
    margin-bottom: 150px;
  }
  section.projectDetail .littleSteps .row .row > div {
    display: flex;
    justify-content: center;
  }
  section.projectDetail .littleSteps .titleArea .title {
    font-size: 36px;
  }
  section.projectDetail .littleSteps .rightImgArea:before {
    bottom: 76px;
    left: 0;
    transform: translate(0, 100%);
    aspect-ratio: 397/374;
    z-index: 3;
    max-width: 157px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.projectDetail .gridArea {
    display: none;
  }
  section.projectDetail .littleSteps .titleArea .title {
    font-size: 36px;
  }
  section.projectDetail .feelGood {
    padding: 50px 0;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.projectDetail .gridArea {
    display: none;
  }
  section.projectDetail .feelGood {
    padding: 50px 0;
    margin-bottom: 100px;
  }
  section.projectDetail .littleSteps .titleArea .title {
    font-size: 36px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.projectDetail .littleSteps .titleArea .title {
    font-size: 36px;
  }
}/*# sourceMappingURL=mobile.css.map */