.support-with-service {
    padding-top: var(--padding-top-desk);
    padding-bottom: var(--padding-bottom-desk);
    background: var(--section-bg);
}

.support-with-service-container .support__title {
    font-size: var(--heading-font-desk);
    color: var(--heading-color);
    margin: 0 0 10px 0;
    line-height: 1.273;
}

.support-with-service-container .support__description {
    font-size: 20px;
    color: #000000;
    font-family: ANTA Sharp Grotesk Medium;
    margin: 0 0 30px 0;
    max-width: 655px;
}

.support-with-service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.support-main-wrapper {
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #CDCDCD;
    padding: 45px 100px 45px 60px;
    gap: 64px;
}

.left-side-wrapper {
    flex: 0 0 162px;
    max-width: 100%;
}

.right-side-wrapper {
    flex: 1;
    max-width: 100%;
}

.suppoert__image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-side-wrapper .block__title {
    font-size: 34px;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.265;
}

.right-side-wrapper .block__description {
    font-size: 20px;
    font-family: ANTA Sharp Grotesk Medium;
    margin: 0 0 30px 0;
}

.left-side-wrapper .suppoert__image-wrapper {
    max-width: 162px;
    width: 100%;
    max-height: 162px;
    height: 100%;
    background: #F6F6F6;
    border-radius: 50%;
    padding: 38px 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side-wrapper .view__button {
    background: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 154px;
    padding: 10px 0;
    font-size: 18px;
    border-radius: 24px;
    line-height: 1.334;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.right-side-wrapper .view__button span.top-text {
    transform: translateY(0%);
    transition: all 0.3s ease;
}

.right-side-wrapper .view__button span.bottom-text {
    position: absolute;
    transform: translateY(200%);
    transition: all 0.3s ease;
    color: #ffffff;
}

.right-side-wrapper .view__button:hover span.top-text {
    transform: translateY(-200%);
    transition: all 0.3s ease;
}

.right-side-wrapper .view__button:hover span.bottom-text {
    transform: translateY(0%);
    transition: all 0.3s ease;
}

@media (max-width:1440px) {
    .support-main-wrapper {
        padding: 40px 20px;
        gap: 30px;
    }
}

@media (max-width:1024px) {
    .right-side-wrapper .block__description {
        font-size: 18px;
    }
}

@media (max-width:990px) {
    .support-with-service-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width:768px) {
    .support-with-service {
        padding-top: var(--padding-top-mob);
        padding-bottom: var(--padding-bottom-mob);
    }

    .support-with-service-container .support__title {
        font-size: var(--heading-font-mob);
    }

    .right-side-wrapper .block__title {
        font-size: 28px;
    }

    .right-side-wrapper .view__button {
        font-size: 16px;
    }

    .support-main-wrapper {
        padding: 20px;
    }

    .support-with-service-container .support__description {
        font-size: 18px;
        margin: 0 0 26px 0;
    }

    .right-side-wrapper .block__description {
        margin: 0 0 20px 0;
    }
}

@media (max-width:575px) {
    .support-main-wrapper {
        flex-wrap: wrap;
        gap: 24px;
    }

    .left-side-wrapper {
        flex: 0 0 86px;
        max-width: 86px;
    }

    right-side-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .right-side-wrapper .view__button {
        font-size: 14px;
        max-width: fit-content;
        padding: 6px 20px;
    }

    .left-side-wrapper .suppoert__image-wrapper {
        max-width: 86px;
        max-height: 86px;
        padding: 20px;
    }

    .support-with-service-container .support__description {
        font-size: 14px;
        margin: 0 0 20px 0;
    }

    .right-side-wrapper .block__title {
        margin: 0 0 8px 0px;
        line-height: 1.2;
        font-size: 18px;
    }

    .right-side-wrapper .block__description {
        font-size: 14px;
        margin: 0 0 12px 0;
    }

    .support-with-service-wrapper {
        gap: 14px;
    }
}