/*components/services*/
.our-services {
    padding: 170px 0 80px 0;
    position: relative;
    background: #f6f7f8;

    .wrap {
        display: flex;
        gap: 100px;
        justify-content: space-between;
    }

    .our-services__bg {
        position: absolute;
        top: 0;
        left: 0;
    }

    .our-services__wrap-photo {
        width: 50%;
        img {
            width: 100%;
        }
    }

    .our-services__wrap-content {
        width: 50%;
    }

    .our-services__title {
        margin-bottom: 20px;
    }

    .our-services__block-text {
        margin-bottom: 10px;
    }

    .our-services__block {
        margin-bottom: 50px;
    }
}

.our-services-row-revers {
    background: white;
    .wrap {
        flex-direction: row-reverse;
    }
}

@media all and (max-width: 800px) {
    .our-services {
        .wrap {
            flex-direction: column;
            align-items: center;
        }
        .our-services__wrap-photo {
            width: 100%;
        }
        .our-services__wrap-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
}




.our-services .our-services__photo {
    display: flex;
    border-radius: 80px;
    overflow: hidden;
    max-width: 660px;
}

.our-services-bg-1 {
    position: relative;
    overflow: hidden
}

.our-services-bg-1:after, .our-services-bg-1:before {
    content: "";
    position: absolute;
    display: block;
    width: 90%;
    height: 100%
}

.our-services-bg-1:after {
    top: -83%;
    right: -14%;
    background: url("../img/our-service-bg-1.svg") no-repeat 50%/contain
}

.our-services-bg-1:before {
    top: -70%;
    right: -13%;
    background: url("../img/our-service-bg-2.svg") no-repeat 50%/contain
}

.our-services-bg-2 {
    position: relative
}

.our-services-bg-2 .our-services__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.our-services-bg-2 .our-services__bg:after, .our-services-bg-2 .our-services__bg:before {
    content: "";
    position: absolute;
    display: block
}

.our-services-bg-2 .our-services__bg:after {
    width: 1200px;
    height: 1111px;
    top: -37%;
    left: -50px;
    background: url("../img/our-service-bg-3.svg") no-repeat 50%/contain;
    z-index: 0
}

.our-services-bg-2 .our-services__bg:before {
    width: 62.5%;
    height: 1111px;
    top: -50%;
    right: -400px;
    background: url("../img/our-service-bg-4.svg") no-repeat 50%/contain;
    z-index: -1
}