/* section-case-study-hero css */
.section-case-study-hero {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-inline: 1.5rem;
    padding-top: 23rem;
    padding-bottom: 19rem;
    position: relative;
}
.section-case-study-hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(var(--black-rgb), 0.8);
}
.cs-study-wrap {
    width: 100%;
}
.cs-study-content {
    width: 100%;
    max-width: 68rem;
    gap: 2.2rem;
}
.cs-study-list {
    --success-color: #00D492;
    --success-color-rgb: rgb(0, 188, 125);
    gap: 2rem;
}
.cs-study-list li {
    --crl-size: 0.3rem;
    color: rgba(var(--light-rgb), 0.4);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    position: relative;
    display: block;
}
.cs-study-list li.mark-color { color: var(--primary-color); }
.cs-study-list li.success-color {
    color: var(--success-color);
    border: 0.1rem solid rgba(0, 188, 125, 0.25);
    background: rgba(0, 188, 125, 0.15);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
}
.cs-study-list li + li::after {
    content: '';
    position: absolute;
    width: var(--crl-size);
    height: var(--crl-size);
    top: 50%;
    left: -1.2rem;
    z-index: 0;
    background-color: rgba(var(--light-rgb), 0.4);
    transform: translateY(-50%);
    border-radius: 50%;
}
.cs-study-content-title {
    color: var(--light);
    font-size: 5.4rem;
    font-weight: 700;
    letter-spacing: -0.13rem;
    line-height: 1.1;
}
.cs-study-content-text {
    color: rgba(var(--light-rgb), 0.6);
    font-size: 1.8rem;
    font-weight: 400;
    max-width: 52rem;
}

.cs-study-address-wrap {
    width: 100%;
    --gap: 2.4rem;
    gap: var(--gap);
    margin-top: 5rem;
    border-top: 0.1rem solid rgba(var(--light-rgb), 0.08);
    padding-top: 3rem;
}
.cs-study-icon-bx {
    gap: 1.1rem;
}
.cs-study-icon {
    color: var(--primary-color);
    position: relative;
    top: 0.3rem;
}
.cs-study-addrs-title {
    color: rgba(var(--light-rgb), 0.3);
    font-size: 1.23rem;
    font-weight: 700;
    letter-spacing: 0.17rem;
    margin-bottom: 0.25rem;
    display: inline-flex;
}
.cs-study-addrs-text {
    color: rgba(var(--light-rgb), 0.75);
    font-size: 1.47rem;
    font-weight: 500;
}

@media (max-width: 1050px) {
    .section-case-study-hero {
        padding-top: 10rem;
        padding-bottom: 7rem;
    }
    .cs-study-content {
        gap: 1.2rem;
    }
    .cs-study-content-title {
        font-size: 4.2rem;
    }
    .cs-study-content-text {
        font-size: 1.6rem;
        max-width: 100%;
    }
    .cs-study-address-wrap {
        --gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
}
@media (max-width: 768px) {
    .section-case-study-hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
    .cs-study-list {
        flex-wrap: wrap;
    }
    .cs-study-list li + li::after { content: none;}
    
    .cs-study-addrs-card {
        width: calc((100% - (var(--gap) * 2)) / 2);
    }
    .cs-study-content-title {
        font-size: 3.2rem;
    }
}
@media (max-width: 520px) {
    .cs-study-addrs-card {
        width: 100%;
    }
}