/* 
---------------------------------------------
                Company 02
--------------------------------------------- 
*/

.subpage-title span {
    background: linear-gradient(90deg, #506BE1 0%, #5ED9FC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.desc.lg {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

/* cont1 */
.cont1 {
    margin: 80px 0 100px;
    position: relative;
    isolation: isolate;
}

.cont1 .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../../img/company/content-bg02.jpg") center/cover no-repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.cont1 .container {
    position: relative;
    min-height: 85vh;
    display: flex;
    z-index: 1;
}

.cont1 .eyebrow {
    color: var(--white-80);
    font-size: var(--font-lg);
    font-weight: 700;
    line-height: 1.4;
}

.cont1 .text-box {
    margin-top: 120px;
    color: white;
}

.cont1 .desc {
    color: white;
}

.cont1-visual {
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 390px;
    height: 370px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    margin: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .16)
}

.cont1-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

@media (max-width:1440px) {
    .desc.lg {
        font-size: var(--font-xl);
    }

    .cont1 .container {
        min-height: 78vh;
    }

    .cont1 .text-box {
        margin-top: 110px;
    }

    .cont1-visual {
        width: 360px;
        height: 340px;
        bottom: -54px;
    }
}

@media (max-width:1280px) {
    .desc.lg {
        font-size: var(--font-lg);
    }

    .cont1 .container {
        min-height: 72vh;
    }

    .cont1 .text-box {
        margin-top: 96px;
    }

    .cont1-visual {
        width: 330px;
        height: 310px;
        bottom: -48px;
        border-radius: 14px;
    }

    .cont1 .eyebrow {
        font-size: var(--font-base);
    }
}

@media (max-width:1024px) {
    .desc.lg {
        font-size: var(--font-md);
        margin-top: 18px;
    }

    .cont1 {
        margin: 64px 0 90px;
    }

    .cont1 .container {
        min-height: 64vh;
    }

    .cont1 .text-box {
        margin-top: 80px;
    }

    .cont1-visual {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 32px;
        border-radius: 18px;
    }

    .cont1-visual img {
        height: auto;
    }
}

@media (max-width:768px) {
    .desc.lg {
        font-size: var(--font-base);
        margin-top: 16px;
    }

    .cont1 {
        margin: 56px 0 72px;
    }

    .cont1 .container {
        min-height: 56vh;
    }

    .cont1 .text-box {
        margin-top: 56px;
    }

    .cont1-visual {
        border-radius: 16px;
        margin-top: 28px;
    }
}

@media (max-width:480px) {
    .desc.lg {
        font-size: var(--font-sm);
        margin-top: 14px;
        line-height: 1.5;
    }

    .cont1 {
        margin: 48px 0 60px;
    }

    .cont1 .container {
        min-height: 48vh;
    }

    .cont1 .text-box {
        margin-top: 42px;
    }

    .cont1-visual {
        border-radius: 14px;
        margin-top: 24px;
    }
}

/* cont2 */
.cont2 .container {
    position: relative;
}

.cont2 .media {
    position: relative;
    height: 580px;
    z-index: 2;
}

.cont2 .media .visual {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
}

.cont2 .media .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cont2 .media .visual:first-of-type {
    left: calc(-1 * ((100vw - var(--container-width)) / 2));
    top: 0;
    width: calc(66.666% - 24px + ((100vw - var(--container-width)) / 2));
    height: 550px;
}

.cont2 .media .visual:last-of-type {
    right: 0;
    top: 200px;
    width: calc(33.333% - 24px);
    height: 670px;
}

@media (max-width: 1280px) {
    .cont2 .media {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        align-items: stretch;
    }

    .cont2 .media .visual {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: auto;
        height: auto;
        border-radius: 14px;
    }

    .cont2 .media .visual img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        display: block;
    }

    .cont2 .media .visual:first-of-type,
    .cont2 .media .visual:last-of-type {
        left: auto;
        right: auto;
        top: auto;
        width: auto;
        height: auto;
    }

    .cont2 .media .visual:last-of-type {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .cont2 .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .cont2 .media {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cont2 .media .visual {
        border-radius: 12px;
    }

    .cont2 .media .visual img {
        aspect-ratio: 3 / 4;
    }

    .cont2 .media .visual:last-of-type {
        margin-top: 20px;
    }
}

@media (max-width: 420px) {
    .cont2 .media {
        gap: 10px;
    }

    .cont2 .media .visual img {
        aspect-ratio: 1 / 1;
    }

    .cont2 .media .visual:last-of-type {
        margin-top: 16px;
    }
}

/* cont3 */
.cont3 .container {
    padding-top: 80px;
}

.cont3 .cont-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.cont3 .text-box {
    margin-top: 0;
}

.rail {
    position: relative;
    margin-top: 80px;
}

.rail .viewport {
    position: relative;
    clip-path: inset(0 calc(-1 * 0) 0 0);
}

.moto-swiper {
    overflow: visible;
}

.swiper-wrapper {
    align-items: flex-end;
}

.swiper-slide {
    width: 490px;
}

.swiper-slide.card {
    position: relative;
    height: 669px;
    padding: 40px 50px;
    display: flex;
    align-items: flex-end;
    border-radius: 300px 300px 20px 20px;
    overflow: hidden;
    will-change: transform;
}

.swiper-slide.card:nth-child(even) {
    transform: translateY(80px);
}

.swiper-slide.card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.swiper-slide.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(94, 217, 252, 0) 40%, #5ED9FC 100%);
    z-index: 1;
}

.swiper-slide.card h3 {
    position: relative;
    color: white;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    z-index: 2;
}

.progress {
    height: 7px;
    margin-top: 150px;
    background: var(--black-100);
    border-radius: 4px;
    overflow: hidden;
}

.progress .bar {
    width: 0;
    height: 100%;
    background: var(--indigo);
    transform: translateX(0);
    transition: transform .3s;
}

@media (max-width: 1400px) {
    .cont3 .container {
        padding-top: 72px;
    }

    .rail {
        margin-top: 72px;
    }

    .swiper-slide {
        width: 440px;
    }

    .swiper-slide.card {
        height: 620px;
        padding: 36px 42px;
        border-radius: 260px 260px 20px 20px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(60px);
    }

    .swiper-slide.card h3 {
        font-size: calc(var(--font-3xl) * 1.5);
        line-height: 1.35;
    }

    .progress {
        margin-top: 120px;
    }
}

@media (max-width: 1199.98px) {
    .cont3 .container {
        padding-top: 64px;
    }

    .cont3 .cont-header {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .cont3 .cont-header .controls {
        align-self: flex-end;
    }

    .rail {
        margin-top: 64px;
    }

    .swiper-slide {
        width: 380px;
    }

    .swiper-slide.card {
        height: 560px;
        padding: 32px 36px;
        border-radius: 220px 220px 18px 18px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(48px);
    }

    .swiper-slide.card h3 {
        font-size: calc(var(--font-3xl) * 1.35);
    }

    .progress {
        margin-top: 100px;
    }
}

@media (max-width: 992px) {
    .cont3 .container {
        padding-top: 56px;
    }

    .rail {
        margin-top: 56px;
    }

    .swiper-slide {
        width: 320px;
    }

    .swiper-slide.card {
        height: 500px;
        padding: 28px 28px;
        border-radius: 180px 180px 16px 16px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(40px);
    }

    .swiper-slide.card h3 {
        font-size: calc(var(--font-3xl) * 1.2);
    }

    .progress {
        margin-top: 84px;
        height: 6px;
    }
}

@media (max-width: 768px) {
    .rail .viewport {
        overflow: hidden;
    }

    .cont3 .container {
        padding-top: 48px;
    }

    .cont3 .cont-header {
        gap: 20px;
    }

    .cont3 .text-box {
        margin-top: 0;
    }

    .rail {
        margin-top: 48px;
    }

    .swiper-slide {
        width: 280px;
    }

    .swiper-slide.card {
        height: 460px;
        padding: 24px 22px;
        border-radius: 140px 140px 14px 14px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(32px);
    }

    .swiper-slide.card h3 {
        font-size: var(--font-2xl);
        line-height: 1.3;
    }

    .progress {
        margin-top: 64px;
        height: 6px;
    }
}

@media (max-width: 560px) {
    .cont3 .cont-header {
        gap: 16px;
    }

    .swiper-slide {
        width: 240px;
    }

    .swiper-slide.card {
        height: 420px;
        padding: 20px 18px;
        border-radius: 120px 120px 12px 12px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(24px);
    }

    .swiper-slide.card h3 {
        font-size: var(--font-xl);
    }

    .progress {
        margin-top: 52px;
        height: 5px;
    }
}

@media (max-width: 420px) {
    .cont3 .container {
        padding-top: 40px;
    }

    .rail {
        margin-top: 40px;
    }

    .swiper-slide {
        width: 220px;
    }

    .swiper-slide.card {
        height: 380px;
        padding: 18px 16px;
        border-radius: 100px 100px 10px 10px;
    }

    .swiper-slide.card:nth-child(even) {
        transform: translateY(18px);
    }

    .swiper-slide.card h3 {
        font-size: var(--font-lg);
    }

    .progress {
        margin-top: 44px;
        height: 5px;
    }
}