.ceox-process {
padding: 96px 0;
background: #FFFFFF;
}

.ceox-process .ceox-container {
width: 100%;
max-width:var(--ceox-container);
margin: 0 auto;
padding-right: 24px;
padding-left: 24px;
}

.ceox-process__header {
max-width: 760px;
margin: 0 auto 72px;
text-align: center;
}

.ceox-process__eyebrow {
margin: 0 0 16px;
color: #F28C28;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.16em;
line-height: 1.6;
text-transform: uppercase;
}

.ceox-process__title {
margin: 0;
color: #173F6D;
font-size: 48px;
font-weight: 700;
line-height: 1.15;
}

.ceox-process__description {
max-width: 720px;
margin: 24px auto 0;
color: #6B7280;
font-size: 18px;
line-height: 1.8;
}

.ceox-process__timeline {
width: 100%;
}

.ceox-process__item {
align-items: flex-start;
gap: 32px;
padding: 40px 0;
transition:
transform 0.3s ease,
opacity 0.3s ease;
}

.ceox-process__item:hover {
transform:none;
}

.ceox-process__number{
    display:flex;
    align-items:center;
    justify-content:center;

    width:96px;
    height:96px;

    margin:0;

    border-radius:50%;

    background:#F5F7FA;

    color:#173F6D;

    font-size:40px;
    font-weight:800;
    line-height:1;

    transition:
        .35s ease;
}

.ceox-process__content {
max-width: 760px;
}

.ceox-process__step-title {
margin: 0 0 18px;
color: #173F6D;
font-size: 36px;
font-weight: 700;
line-height: 1.2;
}

.ceox-process__step-description {
margin: 0;
color: #6B7280;
font-size: 19px;
line-height: 1.9;
}

.ceox-process__divider {
margin: 0;
border: 0;
border-top: 1px solid #E5E7EB;
opacity: 1;
}

@media (min-width: 782px) {
.ceox-process__item {
display: flex;
align-items: flex-start;
}

.ceox-process__number-column {
    flex: 0 0 18%;
    max-width: 18%;
}

.ceox-process__content {
    flex: 0 0 82%;
    max-width: 82%;
}

}

@media (max-width: 1024px) {
.ceox-process {
padding: 80px 0;
}


.ceox-process .ceox-container {
    padding-right: 20px;
    padding-left: 20px;
}

.ceox-process__header {
    margin-bottom: 56px;
}

.ceox-process__title {
    font-size: 40px;
}

.ceox-process__description {
    font-size: 17px;
}

.ceox-process__number {
    font-size: 56px;
}

.ceox-process__step-title {
    font-size: 28px;
}

.ceox-process__step-description {
    font-size: 17px;
}

}

@media (max-width: 781px) {
.ceox-process {
padding: 64px 0;
}

.ceox-process .ceox-container {
    padding-right: 20px;
    padding-left: 20px;
}

.ceox-process__header {
    margin-bottom: 48px;
}

.ceox-process__title {
    font-size: 34px;
}

.ceox-process__description {
    font-size: 16px;
}

.ceox-process__item {
    display: block;
    padding: 32px 0;
}

.ceox-process__number-column {
    margin-bottom: 20px;
}

.ceox-process__number {
    font-size: 48px;
}

.ceox-process__step-title {
    font-size: 24px;
}

.ceox-process__step-description {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
}

.ceox-process__item:hover{

    transform:translateX(12px);

}

.ceox-process__item:hover .ceox-process__number{

    background:#173F6D;
    color:#fff;

    box-shadow:
        0 20px 40px rgba(23,63,109,.20);

}

}

@media (prefers-reduced-motion: reduce) {
    .ceox-process,
    .ceox-process *,
    .ceox-process *::before,
    .ceox-process *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
/* =====================================================
   PROCESS PREMIUM v1
===================================================== */

.ceox-process__item{
    position:relative;
    display:grid;
    grid-template-columns:120px 1fr;
    gap:48px;
    padding:48px 0;
}

.ceox-process__item:not(:last-child){
    border-bottom:1px solid #E8EDF3;
}

.ceox-process__number{

    width:88px;
    height:88px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F5F7FA;

    color:var(--ceox-primary);

    font-size:42px;
    font-weight:800;

    transition:.35s ease;

}

.ceox-process__item:hover .ceox-process__number{

    background:var(--ceox-accent);

    color:#fff;

    transform:scale(1.08);

}

.ceox-process__title{

    margin-bottom:14px;

}

.ceox-process__description{

    max-width:760px;

    color:var(--ceox-text-light);

    line-height:1.9;

}
.ceox-process__divider{

    margin:0;

    border-top:1px solid #EEF2F6;

}

.ceox-process__content{

    padding-top:10px;

}

