#aboutBrand .bg {
    opacity: 0.05;
    filter: contrast(0.5);
    mix-blend-mode: hard-light;
}

/* half-container */
.half-container {
    position: relative;
    z-index: 2;
    display: flex;
}

.half-container .tit-wrap,
.half-container .box-wrap {
    flex: 1 0 auto;
}

.half-container .tit-wrap {
    height: 100vh;
    display: flex;
    width: fit-content;
    padding-top: var(--divider-gap);
}

.half-container .tit-wrap .content-title h3 span {
    color: var(--color-sub);
    font-weight: 800;
}

.half-container .box-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 70px;
    padding: var(--divider-gap) 5.5vw;
    padding-right: 0;

    width: 55%;
}

.half-container .box-wrap .box {
    cursor: pointer;
    display: block;
    width: 580px;
    height: auto;
    aspect-ratio: 9/5;
    color: var(--brand-color);
    align-self: flex-start;
    perspective: 800px;
    /*원근감 설정. 낮을수록 원근감이 깊어짐*/
}

.half-container .box-wrap .box:nth-child(odd) {
    align-self: flex-end;
}

.half-container .box-wrap .box:hover .inner {
    transform: rotateY(180deg);
    /*카드 뒤집는 효과*/
}

.half-container .box-wrap .box .inner {
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 1s ease;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--brand-bg);

    border-radius: 30px;
}

.half-container .box-wrap .box .front,
.half-container .box-wrap .box .back {
    position: absolute;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    padding: 35px 50px;
    padding-bottom: 55px;
}

.half-container .box-wrap .box .desc {
    color: #fff;
    word-break: keep-all;
    line-height: 1.6;
}

.half-container .box-wrap .box.dsoh .desc {
    color: var(--color-mute);
}

.half-container .box-wrap .box .desc span {
    color: var(--brand-color);
}

.half-container .box-wrap .box .front .image {
    width: 120px;
    height: 35px;
    overflow: hidden;
    margin-bottom: 35px;
}

.half-container .box-wrap .box .front .image .logo {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.half-container .box-wrap .box .front .text .eng-name {
    color: var(--color-mute);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
}

.half-container .box-wrap .box.staynt .front .text .eng-name {
    color: #fff;
}

.half-container .box-wrap .box .front .text h5 {
    color: var(--brand-color);
    font-weight: 800;
    line-height: 1;
}

.half-container .box-wrap .box .front .desc {
    margin-top: 25px;
}

.half-container .box-wrap .box .back {
    position: relative;
    transform: rotateY(180deg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    row-gap: 12px;
}

.half-container .box-wrap .box .back .image {
    max-width: 160px;
    max-height: 35px;
}

.half-container .box-wrap .box .link-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.half-container .box-wrap .box .front .link-text {
    display: none;
}

.half-container .box-wrap .box .more-arrow {
    --arrow-circle-size: 30px;
    --arrow-size: 5.5px;
    --arrow-thickness: 1px;
    --arrow-color: #fff;
}

.half-container .box-wrap .box.dsoh .more-arrow {
    --arrow-color: #000;
}

.half-container .box-wrap .box .more-arrow .arrow {
    width: 12px;
}

.half-container .box-wrap .box:hover .more-arrow .arrow {
    animation: aniArrow 1.2s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}

#aboutnLocation .tit-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--tit-margin);
}

#aboutnLocation .content-title {
    margin-bottom: 0;
}

#aboutnLocation .content-title p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

#aboutnLocation .content-title img {
    width: 15px;
    display: inline-block;
}

#aboutnLocation .location-info {
    display: flex;
    flex-wrap: wrap;
    max-width: 35%;
    gap: 25px 45px;
}

#aboutnLocation .location-info dt {
    color: var(--color-mute);
    font-weight: 600;
    font-size: var(--f16);
}

#aboutnLocation .location-info dd {
    font-size: 18px;
}

#aboutnLocation .location-info .address {
    width: 100%;
}

#aboutnLocation .map {
    overflow: hidden;
    border-radius: 60px 0;
}

#aboutnLocation .map>.root_daum_roughmap {
    aspect-ratio: 1440/600;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
    #aboutBrand {
        --tit-margin: 0;
    }

    .half-container.inner-divider {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
    #aboutBrand .content-title h2 {
        line-height: 1.1;
    }

    #aboutBrand .content-title h2 span {
        display: block;
    }

    .half-container .box-wrap {
        padding: var(--divider-gap) 2vw;
        padding-right: 0;
    }

    .half-container .box-wrap .box {
        width: 530px;
    }

    .half-container .box-wrap .box .front .image {
        width: 100px;
        height: 30px;
        margin-bottom: 25px;
    }

    .half-container .box-wrap .box .front .desc {
        margin-top: 20px;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    .half-container {
        flex-direction: column;
        align-items: center;
        width: 85%;
        margin: 0 auto;
    }

    .half-container .tit-wrap {
        height: 100%;
        text-align: center;
    }

    .half-container .box-wrap {
        row-gap: 50px;
        padding: 0;
        padding-right: 0;
        width: 100%;
    }

    .half-container .box-wrap:last-child {
        padding-bottom: var(--divider-gap);
    }

    .half-container .box-wrap .box {
        width: 520px;
    }

    .half-container .box-wrap .box .front,
    .half-container .box-wrap .box .back {
        padding: 35px 45px;
        padding-bottom: 40px;
    }

    .half-container .box-wrap .box .front .image {
        max-width: 100px;
        max-height: 30px;
        margin-bottom: 30px;
    }

    .half-container .box-wrap .box .front .desc {
        margin-top: 20px;
    }

    #aboutnLocation .tit-wrap {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 45px;
    }

    #aboutnLocation .content-title img {
        width: 12px;
    }

    #aboutnLocation .location-info {
        max-width: unset;
    }

    #aboutnLocation .map {
        border-radius: 40px 0;
    }

    #aboutnLocation .map>.root_daum_roughmap {
        aspect-ratio: 768/450;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    .half-container {
        flex-direction: column;
        align-items: center;
        width: 85%;
        margin: 0 auto;
    }

    .half-container .tit-wrap {
        height: 100%;
        text-align: center;
    }

    .half-container .box-wrap {
        row-gap: 35px;
        padding: 0;
        padding-right: 0;
        width: 100%;
    }

    .half-container .box-wrap:last-child {
        padding-bottom: var(--divider-gap);
    }

    .half-container .box-wrap .box {
        width: 90%;
        height: 100%;
        aspect-ratio: unset;
    }

    .half-container .box-wrap .box .front {
        position: static;
        padding: 30px;
        padding-bottom: 40px;
    }

    .half-container .box-wrap .box .back {
        display: none;
    }

    .half-container .box-wrap .box:hover .inner {
        transform: unset;
    }

    .half-container .box-wrap .box .front .image {
        width: 85px;
        height: 20px;
        margin-bottom: 20px;
    }

    .half-container .box-wrap .box .front .text .eng-name {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .half-container .box-wrap .box .front .desc {
        margin-top: 18px;
    }

    .half-container .box-wrap .box .front .link-text {
        display: flex;
        gap: 8px;
        margin-top: 15px;
    }

    .half-container .box-wrap .box .front .link-text .desc {
        margin-top: 0;
        font-size: 11px;
    }

    .half-container .box-wrap .box .more-arrow {
        --arrow-circle-size: 18px;
        --arrow-size: 3px;
    }

    .half-container .box-wrap .box .more-arrow .arrow {
        width: 8px;
    }

    #aboutnLocation .tit-wrap {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 45px;
    }

    #aboutnLocation .content-title p {
        gap: 6px;
    }

    #aboutnLocation .content-title img {
        width: 10px;
    }

    #aboutnLocation .location-info {
        max-width: unset;
        row-gap: 20px;
    }

    #aboutnLocation .location-info dd {
        font-size: 15px;
    }

    #aboutnLocation .map {
        border-radius: 30px 0;
    }

    #aboutnLocation .map>.root_daum_roughmap {
        aspect-ratio: 375/300;
    }
}