.element_1 {
    width: 150px;
    left: 26%;
    bottom: 30%;
    animation: element 1.6s infinite alternate;
}
.element_2 {
    width: 70px;
    right: 26%;
    bottom: 16%;
    animation: element 1.6s .3s infinite alternate;
}
@keyframes element {
    to {
        transform: translateY(20px);
    }
}

/*----------------- web_list -----------------*/
.web_list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.web_box {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.web_img {
    width: 100%;
    aspect-ratio: 5 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.web_inner {
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.web_title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    margin-bottom: 20px;
}
.web_text {
    font-size: var(--ft18);
    color: var(--gray-500);
    margin-bottom: 32px;
}
.web_inner .btn {
    max-width: 320px;
}

/*----------------- process -----------------*/
.process {
    margin-top: 80px;
}
.process_tr {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    gap: 50px;
}
.process_tr:last-child {
    margin-bottom: 0;
}
.process_box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    position: relative;
    flex-shrink: 0;
}
.process_box::before {
    content: '';
    display: block;
    width: 12px;
    height: 100%;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    background-color: var(--color);
    position: absolute;
    left: 0;
    top: 0;
}
.process_icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
}
.process_icon img {
    width: 46px;
    height: 46px;
}
.process_title {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
}

.process_list {
    width: 100%;
    padding: 20px 40px;
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}
.process_list::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.process_list::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    border-top: 1px dashed var(--dark-line);
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}
.process_list li {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background-color: var(--color);
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.process_btm {
    font-size: var(--ft14);
    color: var(--gray-500);
    text-align: right;
    margin-top: 24px;
}

@media all and (max-width: 1800px) {
    /*-- process --*/
    .process_tr {
        gap: 32px;
    }
    .process_box {
        max-width: 320px;
    }
    .process_list::before {
        left: -32px;
    }
    .process_list::after {
        width: 32px;
        left: -32px;
    }
    .process_list li {
        font-size: var(--ft16);
    }
}

@media all and (max-width: 1600px) {
    /*-- main_sec --*/
    .element_1 {
        width: 120px;
    }
    .element_2 {
        width: 60px;
    }

    /*-- web_list --*/
    .web_list {
        gap: 24px;
    }
}


@media all and (max-width: 1400px) {

    /*-- web_list --*/
    .web_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .web_box {
        flex-direction: row;
    }
    .web_img {
        width: 400px;
        flex-shrink: 0;
    }

    /*-- process --*/
    .process_tr {
        padding: 32px;
        border-radius: var(--radius-lg);
        border: 1px solid var(--dark-line);
        flex-direction: column;
        gap: 20px;
    }
    .process_box {
        max-width: 100%;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .process_icon {
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
    }
    .process_icon img {
        width: 30px;
        height: 30px;
    }
    .process_box::before,
    .process_list::before,
    .process_list::after {
        display: none;
    }
    .process_list {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
    }
    .process_list li {
        margin: 0 !important;
        max-width: 100% !important;
        background-color: #E5EEFF;
        color: var(--gray-400);
    }
}

@media all and (max-width: 1200px) {
    /*-- main_sec --*/
    .element_1 {
        width: 100px;
        left: 10%;
    }
    .element_2 {
        width: 50px;
        right: 10%;
    }

    /*-- web_list --*/
    .web_list {
        margin-top: 40px;
    }
    .web_img {
        width: 350px;
    }
    .web_inner {
        padding: 32px;
    }
    .web_title {
        font-size: var(--ft20);
        margin-bottom: 12px;
    }
    .web_text {
        font-size: var(--ft16);
    }
    .web_inner .btn {
        max-width: 240px;
    }

    /*-- process --*/
    .process {
        margin-top: 40px;
    }
    .process_tr {
        padding: 32px 20px 20px;
    }
}

@media all and (max-width: 768px) {
    /*-- main_sec --*/
    .element_1 {
        width: 65px;
        left: 5%;
    }
    .element_2 {
        width: 30px;
        right: 3%;
        bottom: 45%;
    }

    /*-- web_list --*/
    .web_box {
        flex-direction: column;
    }
    .web_img {
        width: 100%;
    }
    .web_inner {
        padding: 32px 16px;
    }
    .web_inner .btn {
        max-width: 100%;
    }

    /*-- process --*/
    .process_icon {
        position: static;
        margin-bottom: 16px;
    }
    .process_list {
        gap: 6px;
    }
    .process_list li {
        font-size: var(--ft14);
    }
}