.about-service__wrapper {
    display: flex;
    position: relative;
    gap: 110px;
    justify-content: space-between;
}

.about-service__element {
    display: flex;
    gap: 20px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px;
    align-items: center;
}

.about-service__content {
    flex-basis: 540px;
    flex-grow: 1;
}

.about-service__elements {
    flex-basis: 600px;
    flex-grow: 1;
    position: relative;
    background: #F8F8FF;
}

.about-service__text p{
    margin-bottom: 0;
}

.about-service__text p strong {
    font-weight: 600;
}

.about-service__heading strong{
    font-weight: 600;
}

.about-service__text-content {
    transition: all 0.3s ease;
    position: sticky;
}

.about-service__text-content * {
    color: #101010;
}

.about-service__elements {
    display: flex;
    flex-direction: column;
    gap:14px;
}

.about-service__element-icon-wrapper {
    background: #F2F2FF;
    border-radius: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service__element-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-service__text {
    color: #101010;
}


@media screen and (max-width: 1399.99px) {
    .about-service__wrapper {
        gap: calc(40px + (60 - 40)*((100vw - 1024px) /(1200 - 1024)));
    }
    .about-service__element-icon-wrapper{
        width: 65px;
        height:65px;
    }
    .about-service__element-icon {
        width: 36px;
        height: 36px;
    }
}

@media screen and (min-width: 1440px) {
    .about-service__wrapper-reverse{
        flex-direction: row-reverse;
    }
    .about-service__elements {
        display: flex;
        flex-direction: column;
        padding: 30px;
        border-radius: 30px;
    }

    .about-service__element-heading {
        margin-bottom: 15px;
    }

    .about-service__element-icon-wrapper {
        width: 110px;
        height: 110px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 1023.98px) {
    .about-service.margin.withoutmobilemargin{
        margin-bottom:0;
    }
	
    .about-service{
        background: #F8F8FF;
        padding-top: 30px;
        padding-bottom:30px;
    }
    .about-service__wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .about-service__text-content {
        position: static;
    }
    .about-service__element{
        gap: 14px;
    }
    .about-service__content,
    .about-service__elements {
        flex-basis: fit-content;
    }
    .about-service__text p{
        font-size: 14px;
        line-height: 140%;
    }

}

@media screen and (max-width: 359.98px) {
    .about-service__element-heading {
        margin-bottom: 14px;
    }

    .about-service__element-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 6px;
    }

    .about-service__element-icon {
        width: 29px;
        height: 29px;
    }

}