.ecomap-detailpage {
    background-color: #fff;
}
.ecomap-detailpage .visual-section {
    overflow: hidden;
}
.ecomap-detailpage .visual-section .project-mainimg .icon { 
    position: absolute;
    animation-name: floaty-animation;
    animation-timing-function: ease-in-out; 
    animation-iteration-count: infinite;
}
.ecomap-detailpage .visual-section .project-mainimg .icon.icon01 {
    left: 10%;
    bottom: 27%;
    width: 12vw;
    max-width: 300px;
    min-width: 80px;
    aspect-ratio: 1 / 1;
    animation-duration: 5s;
    animation-delay: 0s;
}
.ecomap-detailpage .visual-section .project-mainimg .icon.icon02 {
    left: 14%;
    top: 10%;
    width: 18vw;
    max-width: 380px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    animation-duration: 4.5s;
    animation-delay: -1s;
}
.ecomap-detailpage .visual-section .project-mainimg .icon.icon03 {
    right: 10%;
    top: 40%;
    width: 12vw;
    max-width: 380px;
    min-width: 90px;
    aspect-ratio: 1 / 1;
    animation-duration: 6s;
    animation-delay: -2.5s;
}


.ecomap-detailpage .visual-section .project-mainimg .icon img {
    width: 100%;
    object-fit: contain;
}
.ecomap-detailpage .visual-section .project-mainimg .text-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -10;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ecomap-detailpage .visual-section .project-mainimg .text-bg span {
    font-size: 40rem;
    --initial-color: rgba(133, 193, 164, 0); 
    --fill-color: rgba(133, 193, 164, 0.1); 
    
    font-size: 40rem;
    color: var(--initial-color); 
    
    background: linear-gradient(to right, 
        var(--fill-color) 0%,           
        var(--fill-color) 50%,           
        var(--initial-color) 50%,      
        var(--initial-color) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%; 
    background-position: 100% 0;
    transition: background-position 1.5s ease-out; 
}
.ecomap-detailpage .visual-section .project-mainimg .text-bg.aos-animate span {
    background-position: 0 0; 
}
.ecomap-detailpage .visual-section .project-mainimg .text-bg.aos-animate span:nth-child(2) {
    transition-delay: 1.5s;
}
.ecomap-detailpage .overview-section {
    position: relative;
}
.ecomap-detailpage .overview-section::after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: #F4FBFF;
    content: "";
}
.ecomap-detailpage .overview-section .contents-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.ecomap-detailpage .overview-section .contents-wrap .earth-icon { 
    position: absolute;
    left: 50%;
    bottom: 60%;
    transform: translate(-50%, 100%);
    width: 140%;
    aspect-ratio: 2496 / 2260;
    z-index: -50;
    animation: rotate-infinitely 80s linear infinite;
}
.ecomap-detailpage .overview-section .contents-wrap .earth-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ecomap-detailpage .overview-section .contents-wrap .icon {
    position: absolute;
    animation-name: floaty-animation;
    animation-timing-function: ease-in-out; 
    animation-iteration-count: infinite;
}
.ecomap-detailpage .overview-section .contents-wrap .icon.icon01 {
    left: -3%;
    bottom: 7%;
    width: 15vw;
    max-width: 330px;
    aspect-ratio: 1 / 1;
    filter: blur(1.5px);
    animation-duration: 7s;
    animation-delay: -3s;
}
.ecomap-detailpage .overview-section .contents-wrap .icon.icon02 {
    left: 39%;
    bottom: 42%;
    width: 15vw;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    filter: blur(2.5px);
    animation-duration: 7s;
    animation-delay: -5s;
}
.ecomap-detailpage .overview-section .contents-wrap .icon.icon03 {
    right: -5%;
    bottom: -6%;
    width: 25vw;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    animation-duration: 7s;
    animation-delay: 0s;
}
.ecomap-detailpage .overview-section .contents-wrap .icon img {
    width: 100%;
    object-fit: contain;
}
@keyframes rotate-infinitely {
    from {
        transform: translate(-50%, 100%) rotate(0deg); 
    }
    to {
        transform: translate(-50%, 100%) rotate(360deg);
    }
}
@keyframes floaty-animation {
    0% {
        transform: translate(0, 0); 
    }
    33% {
        transform: translate(-1px, -15px);
    }
    66% {
        transform: translate(1px, 15px);
    }
    100% {
        transform: translate(0, 0); 
    }
}
.ecomap-detailpage .overview-section .contents-wrap .main-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 80vw;
}
.ecomap-detailpage .overview-section .contents-wrap .main-wrap .img-area {
    width: calc(45% - 50px);
    max-width: 540px;
    transform: rotate(-7deg);
}
.ecomap-detailpage .overview-section .contents-wrap .main-wrap .text-area {
    width: calc(55% - 50px);
    max-width: 650px;
}
.ecomap-detailpage .overview-section .contents-wrap .main-wrap .text-area img,
.ecomap-detailpage .overview-section .contents-wrap .main-wrap .img-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ecomap-detailpage .overviewdetail-section {
    background-color: #F4FBFF;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap {
    display: flex;
    justify-content: space-between;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul {
    display: flex;
    gap: 50px;
    width: calc(50%);
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul li {
    width: calc(50% - 25px);
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) {
    position: relative;
    margin-top: 100px;
}


.ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) .img-box {
    position: relative;
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) .img-box::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 348 / 755;
    border: 4px solid rgba(16, 12, 18, 1);
    border-radius: 20px;
    content: "";
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(2) .img-box {
    width: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap ul li .img-box img {
    width: 100%;
    object-fit: contain;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box {
    display: flex;
    flex-direction: column;
    gap: 45px;
    width: 50%;
    margin-top: calc(100px + 10%);
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box > div {
    display: flex;
    align-items: flex-end;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box span {
    display: block;
    font-size: 6.5rem;
    line-height: 1.4;
    color: #100C12;
    font-family: 'OngleipWFontList';
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box .icon {
    width: 10rem;
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box .row02 .icon {
    transform: rotate(-60deg);
}
.ecomap-detailpage .overviewdetail-section .contents-wrap .text-box .icon img {
    width: 100%;
    object-fit: contain;
}


.ecomap-detailpage .tone-manner-section {
    background-color: #F4FBFF;
}
.ecomap-detailpage .tone-manner-section .contents-wrap ul li.green {
    width: 50%;
    background: linear-gradient(180deg, #26D5CE 0%, #42DE8B 100%), #FFF;
}
.ecomap-detailpage .tone-manner-section .contents-wrap ul li.white {
    width: 50%;
    background-color: #fff;
}

.ecomap-detailpage .detailpage-section.onboarding-section {
    background-color: #ECF8F3;
}
.ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 100px;
}
.ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul {
    display: flex;
    justify-content: space-between;
    gap: 180px;
    width: 100%;
    max-width: 1170px;
}
.ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li {
    width: calc(33% - 120px);
}
.ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li:nth-child(3) .sub-info-title {
    opacity: 0;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap  {
    display: flex;
    gap: 100px;
    padding: 0 100px;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap ul {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: calc(50% - 50px);
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap ul li {
    width: calc(50% - 40px);
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box {
    position: relative;
    width: calc(50% - 40px);
    aspect-ratio: 300 / 180;
    border-radius: 20px;
    padding: 0 2rem 3rem 2rem;
    background-color: #ABEACC;
    overflow: hidden;
    min-height: 1px;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group {
    position: relative;
    width: 100%;
    height: 100%;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card,
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card {
    position: absolute; 
    top: 0;
    left: 0;
    opacity: 0;
    transition: none !important; 
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    padding: 2rem;
    border-radius: 10rem;
    background-color: #fff;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card span {
    font-size: 3rem;
    color: #191919;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card .price-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card .price-wrap .icon {
    width: 3rem;
    height: 3rem;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card .price-wrap .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2.6rem 3.4rem;
    border-radius: 10rem;
    background-color: #fff;
    margin-top: 1rem;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .point-title {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .total {
    font-size: 4.5rem;
    color: #191919;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .point-title span {
    font-size: 2.4rem;
    color: #191919;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .point-title .icon {
    width: 5rem;
    height: 5rem;
}
.ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .point-title .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ecomap-detailpage .detailpage-section.stamp-section {
    position: relative;
    overflow: hidden;
}
.ecomap-detailpage .detailpage-section.stamp-section .contents-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 100px;
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 100px 0 30px;
}
.ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul ,
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul {
    display: flex;
    align-items: flex-start;
    justify-items: center;
    gap: 80px;
    width: calc(50% - 50px);
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul li,
.ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul li  {
    width: calc(50% - 40px);
}
.ecomap-detailpage .detailpage-section.stamp-section .contents-wrap .bg-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40rem;
    color: rgba(133, 193, 164, 0.10);
}
.ecomap-detailpage .detailpage-section.stamp-section .icon {
    position: absolute;
}
.ecomap-detailpage .detailpage-section.stamp-section .icon.icon01 {
    left: -5%;
    bottom: 5%;
    transform: translate(0, 50%);
    width: 30vw;
}
.ecomap-detailpage .detailpage-section.stamp-section .icon.icon02 {
    right: -7%;
    transform: translate(0, 50%);
    bottom: 60%;
    width: 25vw;
}
.ecomap-detailpage .detailpage-section.stamp-section .icon img {
    width: 100%;
    object-fit: contain;
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: calc(50% - 40px);
    margin-top: 10%;
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap .coupon-icon {
    width: 45%;
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap .coupon-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap span {
    font-size: 20rem;
    line-height: 1;
    letter-spacing: -0.8rem;
    color: rgba(133, 193, 164, 0.10);
}
.ecomap-detailpage .f-thumb-section .wrapper80 h2 {
    font-size: 36px;
}

@media screen and (max-width : 1500px) {
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap {
        padding: 0 50px;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap  {
        padding: 0 50px;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap {
        padding: 0 50px;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap {
        padding: 0 50px;
    }
}
@media screen and (max-width : 1280px) {
    .ecomap-detailpage .visual-section .project-info .wrapper80 .info-wrap {
        padding: 30px 0;
    }
    .ecomap-detailpage .visual-section .project-mainimg .text-bg span {
        font-size: 30rem;
    }

    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box {
        width: 45%;
        margin-top: 20%;
        gap: 20px;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box span {
        font-size: 5.8rem;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box .icon {
        width: 8rem;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul {
        width: 55%;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) .img-box {
        border-radius: 10px 10px 0 0;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) .img-box::after {
        border: 2px solid rgba(16, 12, 18, 1);
        border-radius: 10px;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(2) .img-box {
        border-radius: 0 0 10px 10px;
    }    
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap {
        padding: 0 15px;
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul {
        justify-content: center;
        gap: 50px;
        width: 70vw;
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li {
        width: calc(33.33% - 33.33px);
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap  {
        padding: 0 15px;
        gap: 50px;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap ul {
        gap: 50px;
        width: calc(50% - 25px);
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap ul li {
        width: calc(50% - 25px);
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box {
        width: calc(50% - 25px);
        padding: 0 2rem 1rem 2rem;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card {
        padding: 1.2rem 2.5rem;
        border-radius: 5rem;
        width: 100%;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .total-card .total {
        font-size: 3.2rem;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card {
        padding: 1.5rem 2rem;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box .text-group .text-card span {
        font-size: 2.5rem;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .icon.icon02 {
        bottom: 45%;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul, 
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul {
        gap: 50px;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul li, 
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul li {
        width: calc(50% - 25px);
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap {
        padding: 0 15px;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap .bg-text {
        font-size: 25rem;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap {
        padding: 0 15px;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap span {
        font-size: 15rem;
    }
}

@media screen and (max-width : 768px) {
    .ecomap-detailpage .visual-section .project-mainimg .text-bg span {
        font-size: 20rem;
        transition: background-position 0.8s ease-out;
    }
    .ecomap-detailpage .visual-section .project-mainimg .text-bg.aos-animate span:nth-child(2) {
        transition-delay: 0.9s;
    }

    .ecomap-detailpage .overview-section .contents-wrap .main-wrap {
        flex-direction: column-reverse;
        gap: 20px;
        width: 100%;
        padding: 0 16px;
    }
    .ecomap-detailpage .overview-section .contents-wrap .main-wrap .text-area {
        width: 75%;
        min-width: 317px;
    }
    .ecomap-detailpage .overview-section .contents-wrap .main-wrap .img-area {
        width: 60%;
    }
    .ecomap-detailpage .overview-section .contents-wrap .earth-icon {
        bottom: 30%;
    }
    .ecomap-detailpage .overview-section .contents-wrap .icon.icon01 {
        width: 23vw;
        left: -7%;
        bottom: 15%;
    }
    .ecomap-detailpage .overview-section .contents-wrap .icon.icon02 {
        display: none;
    }
    .ecomap-detailpage .overview-section .contents-wrap .icon.icon03 {
        width: 35vw;
        right: -14%;
        bottom: 5%;
    }
    .ecomap-detailpage .overviewdetail-section {
        padding: 100px 0 0 0;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap {
        flex-direction: column;
        align-items: center;
        gap: 27px;
        padding: 0;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box {
        margin-top: 0;
        gap: 23px;
        align-items: flex-start;
        width: fit-content;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box > div:nth-child(odd) {
        align-items: center;
        gap: 8px;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap .text-box span {
        font-size: 7rem;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul {
        width: 100%;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li {
        width: 50%;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1)  {
        z-index: 5;
        margin-top: 10%;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(1) .img-box {
        margin-left: 20px;
        width: calc(100% + 20px);
    }
   
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(2) .img-box {
        position: absolute;
        right: 20px;
        width: calc(100% + 20px);
        z-index: -10;
        
        border-radius: 10px;
    }
    .ecomap-detailpage .overviewdetail-section .contents-wrap ul li:nth-child(2) .img-box::after {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        background-image: linear-gradient(to bottom, rgba(244, 251, 255,1), rgba(244, 251, 255,0));
        width: 100%;
        height: 30%;
        content: "";
    }

    .ecomap-detailpage .detailpage-section.onboarding-section .project-detail-head h2 { 
        font-size: 55px;
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul {
        width: 100%;
        column-gap: 40px;
        row-gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li {
        width: calc(50% - 20px);
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li:nth-child(1) .sub-info-title {
        display: none;
    }
    .ecomap-detailpage .detailpage-section.onboarding-section .contents-wrap ul li:nth-child(3) .sub-info-title {
        opacity: 1;
    }

    .ecomap-detailpage .detailpage-section.point-section .project-detail-head h2 { 
        font-size: 55px;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap {
        flex-direction: column;
        gap: 50px;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap ul {
        width: 100%;
        gap: 40px;
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap ul li {
        width: calc(50% - 20px);
    }
    .ecomap-detailpage .detailpage-section.point-section .contents-wrap .text-box {
        width: 100%;
        aspect-ratio: 358 / 271;
        border-radius: 10px;
    }

    .ecomap-detailpage .detailpage-section.stamp-section .project-detail-head h2 { 
        font-size: 55px;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .icon.icon01 {
        left: -25%;
        width: 60vw;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .icon.icon02 {
        right: -25%;
        width: 50vw;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap .bg-text {
        display: none;
    }
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul, 
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul {
        width: 100%;
        gap: 40px;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap ul li, 
    .ecomap-detailpage .detailpage-section.stamp-section .contents-wrap ul li {
        width: calc(50% - 20px);
    }

    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap {
        flex-direction: column-reverse;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap {
        width: 100%;
        gap: 20px;
        margin-top: 20px;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap .coupon-icon {
        width: 48%;
    }
    .ecomap-detailpage .detailpage-section.coupon-section .contents-wrap .bg-text-wrap span {
        font-size: 25.5vw;
    }
}
@media screen and (max-width : 500px) {
    .ecomap-detailpage .visual-section .project-mainimg .text-bg span {
        font-size: 55px;
    }
    .ecomap-detailpage .visual-section .project-info .wrapper80 .info-wrap {
        padding: 30px 0 0 0;
    }
    .ecomap-detailpage .visual-section .project-mainimg .icon.icon01 {
        left: 7%;
    }
    .ecomap-detailpage .visual-section .project-mainimg .icon.icon02 {
        left: 5%;
        top: 20%;
        z-index: -1;
    }
    .ecomap-detailpage .visual-section .project-mainimg .icon.icon03 {
        right: -4%;
        top: 32%;
    }

    @keyframes floaty-animation {
        0% {
            transform: translate(0, 0); 
        }
        33% {
            transform: translate(-1px, -5px);
        }
        66% {
            transform: translate(1px, 5px);
        }
        100% {
            transform: translate(0, 0); 
        }
    }

    .ecomap-detailpage .detailpage-section.stamp-section .icon.icon02 {
        bottom: 35%;
    }
}