@charset "UTF-8";

/* ===================================
    home-process
===================================== */
section.home-process {
    margin: 0 10rem 7.5rem 10rem;
    color: white;
    border-radius: .875rem;
    min-height: 100vh;
    overflow: auto;
}
[data-bs-theme="dark"] section.home-process {
    background-color: var(--glam-lime-light);
    transition: background-color .5s ease, color .5s ease;
}
[data-bs-theme="light"] section.home-process {
    background-color: var(--glam-black);
    transition: background-color .5s ease, color .5s ease;
}
    @media (max-width: 575px) {
        section.home-process {
            border-radius: 0;
            margin: 0 0px 7.5rem 0px;
        }
    }
    @media (min-width: 576px) {
        section.home-process {
            margin: 0 1.5rem 7.5rem 1.5rem;
        }
    }
    @media (min-width: 768px) {
        section.home-process {
            margin: 0 1.5rem 7.5rem 1.5rem;
        }
    }
    @media (min-width: 992px) {
        section.home-process {
            margin: 0 1.5rem 7.5rem 1.5rem;
        }
    }
    @media (min-width: 1200px) {
        section.home-process {
            margin: 0 35px 7.5rem 35px;
        }
    }
    @media (min-width: 1400px) {
        section.home-process {
            margin: 0 10rem 7.5rem 10rem;
        }
    }
section.home-process .sticky-title {
    padding: 7.5rem 0 30rem 0;
    position: sticky;
    top: 0;
    z-index: 10; /* zindex */
}
    @media (max-width: 575px) {
        section.home-process .sticky-title {
            padding: 7.5rem 0 0 0;
            position: relative;
        }
    }
    @media (min-width: 576px) {
        section.home-process .sticky-title {
            padding: 7.5rem 0 0 0;
            position: relative;
        }
    }
    @media (min-width: 992px) {
        section.home-process .sticky-title {
            padding: 7.5rem 0 30rem 0;
            position: sticky;
        }
    }
    @media (min-width: 1200px) {
        section.home-process .sticky-title {
            padding: 7.5rem 0 30rem 0;
            position: sticky;
        }
    }
section.home-process .sticky-title h1 {
    font-family: 'Gilmer-Medium';
    width: 100%;
}
[data-bs-theme="dark"] section.home-process .sticky-title h1 {
    color: var(--glam-black);
}
[data-bs-theme="light"] section.home-process .sticky-title h1 {
    color: var(--glam-light);
}

section.home-process .process-content {
    padding: 7.5rem 0;
}
section.home-process .process-content ul li {
    margin-bottom: 75px;
}
section.home-process .process-content ul li:last-child {
    margin-bottom: 0px;
}
section.home-process .process-content .process-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
section.home-process .process-content .process-item .icon i {
    font-size: 38px;
}
[data-bs-theme="dark"] section.home-process .process-content .process-item .icon i  {
    color: var(--glam-black);
}
[data-bs-theme="light"] section.home-process .process-content .process-item .icon i  {
    color: var(--glam-light);
}

section.home-process .process-content .process-item .title h5 {
    font-family: 'Gilmer-Medium';
}
[data-bs-theme="dark"] section.home-process .process-content .process-item .title h5 {
    color: var(--glam-black);
}
[data-bs-theme="light"] section.home-process .process-content .process-item .title h5 {
    color: var(--glam-light);
}

[data-bs-theme="dark"] section.home-process .process-content .process-item .content p {
    color: var(--glam-black);
}
[data-bs-theme="light"] section.home-process .process-content .process-item .content p {
    color: var(--glam-light);
}
section.home-process .direction-button {
    padding: 3rem 0 7.5rem 0;
    text-align: center;
}
section.home-process .direction-button .link a {
    font-family: 'Gilmer-Medium';
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: .5rem;
}
[data-bs-theme="dark"] section.home-process .direction-button .link a {
    color: var(--glam-black);
    border-bottom: 1px solid var(--glam-black);
}
[data-bs-theme="light"] section.home-process .direction-button .link a {
    color: var(--glam-light);
    border-bottom: 1px solid var(--glam-gray-5);
}
section.home-process .direction-button .link a i {
    font-size: 20px;
    margin-left: 10px;
}
section.home-process .direction-button .link a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: '';
    -webkit-transition: 0.5s width ease;
    transition: 0.5s width ease;
}
[data-bs-theme="dark"] section.home-process .direction-button .link a::after {
    background-color: var(--glam-black);
}
[data-bs-theme="light"] section.home-process .direction-button .link a::after {
    background-color: var(--glam-light);
}
section.home-process .direction-button .link a:hover::after {
    width: 100%;
}