.service-intro__wrapper .up-side {
    display: flex;
    gap: 30px;
}

.service-intro__wrapper .up-side .left {
    max-width: 470px;
    max-height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.service-intro__wrapper .up-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.service-intro__wrapper .parts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 100px;
}

.service-intro__wrapper .parts .btn {
    width: fit-content;
    height: 50px;
}

.service-intro__wrapper .num {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: var(--primary);
}

.service-intro__wrapper .advan-circle {
    width: 200px;
    height: 200px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-image: url('./images/obv.png');
    margin:  0 auto;
}


.service-intro__wrapper .advan {
    width: 100%;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-intro__wrapper .advan h2 {
    text-align: center;
    font-weight: 300;
    line-height: 100%;
    text-align: center;
    color: var(--main-text);
    min-height: 70px;
}

@media (max-width: 600px) {
    .service-intro__wrapper .advan h2 {
        height: fit-content;
        min-height: 0;
    }
}

.service-intro__wrapper .advantages__holder {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.service-intro__wrapper .advan .p6 {
    text-align: center;
    color: var(--light-text-2);
}

.service-intro__wrapper .advan-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    border-radius: 50%;
    background-color: var(--bg-light);
    aspect-ratio: 1;
}

.service-intro__wrapper .advan-circle img {
    width: 100%;
    aspect-ratio: 1;
}

@media (max-width: 1000px) {
    .service-intro__wrapper .up-side {
        flex-direction: column;
    }

    .service-intro__wrapper .up-side .left {
        max-width: unset;
        height: 200px;
    }

    .service-intro__wrapper .up-side img {
        object-fit: cover;
    }
}

@media (max-width: 500px) {
    .service-intro__wrapper .parts {
        padding: 0;
    }

    .service-intro__wrapper .advantages__holder {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;

        width: fit-content;
        margin: 0 auto;
        margin-top: 30px;
    }
}