.page-technology {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 80px;
}

.content-layout__technology {    
    background: url(/assets/image/technology-top.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-position: 78% 23%;
    background-size: cover;
}

.technology-section__box {
    display: grid;
    grid-template-columns: 275px 47%;
    gap: 21%;
}

.technology-section__col {
    height: 100%;
    position: relative;
}

.technology-section__list {
    flex-direction: column;
    height: max-content;
    position: sticky;
    top: 61px;
    gap: 16px;
}

.technology-section__item {
    width: fit-content;
    gap: 16px;
}

.technology-section__item-link {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-light-grey);
}

.technology-section__item-link:hover, .technology-section__item.active .technology-section__item-link {
    color: var(--primary-color);
}

.technology-section__icon path {
    fill: var(--color-light-grey);
}

.technology-section__item:hover .technology-section__icon path, .technology-section__item.active .technology-section__icon path {
    fill: var(--primary-color);
}

.technology-section__content {
    gap: 64px;
}

.technology-section__card {
    gap: 24px;
}

.technology-section__card-body {
    gap: 4px;
}

.technology-section__card-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-light-grey);
}

.technology-section__card.active .technology-section__card-text {
    color: var(--primary-color);
}

.technology-section__card-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.technology-section__card:nth-child(1) .technology-section__card-image {
    margin-top: 40px;
}

.technology-section__card-icon {
    width: fit-content;
    display: block;
}

@media(max-width: 1279px) {
    .technology-section__box {
        grid-template-columns: 223px auto;
        gap: 20px;
    }

    .content-layout__technology {    
        background: url(/assets/image/technology-top-tablet.webp);
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media(max-width: 767px) {
    .technology-section__box {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-layout__technology {    
        background: url(/assets/image/technology-top-mv.webp);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .content-layout__box {
        gap: 8px;
    }

    .technology-section__col {
        height: unset;
        position: sticky;
        top: 62px;
        z-index: 5;
    }

    .technology-section__list {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        background: var(--white-color);
        flex-direction: row;
        height: unset;
        position: relative;
        top: 0;
        overflow-x: scroll;
        width: calc(100% + 40px);
        left: -20px;
        padding: 0 20px 3px 20px;
    }

    .technology-section__icon {
        display: none;
    }

    .technology-section__item {
        width: unset;
        flex-shrink: 0;
    }

    .technology-section__list::-webkit-scrollbar {
        width: 4px;
        height: 4px;
        background-color: #fff;
    }

    .page-technology {
        padding-bottom: 64px;
    }

    .technology-section__card:nth-child(1) .technology-section__card-image {
        margin-top: 16px;
    }

    .technology-section__content {
        gap: 40px;
    }
}