/* REPORT */

.report {
    padding: 140px 0 70px;
}

.report__wrap {
    position: relative;
    background-color: #fff;
    height: 182px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1019px;
    margin: 0 0 0 auto;
    gap: 113px;
}

.report__btn {
    max-width: 305px;
    height: 70px;
}

.report__content > div {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.report__content span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    max-width: 206px;
    display: block;
}

.report__img {
    position: absolute;
    left: -88px;
    top: -82px;
}

@media (max-width: 1100px) {
    .report__wrap {
        gap: 60px;
    }

    .report__wrap {
        max-width: 920px;
    }
}

@media (max-width: 992px) {
    .report {
        padding: 60px 0 60px;
    }

    .report__img {
        position: relative;
        left: initial;
        top: initial;
        width: 125px;
        height: 137px;
    }

    .report__wrap {
        max-width: initial;
        padding: 0 25px;
        gap: 15px;
    }

    .report__btn {
        margin-left: auto;
    }
}

@media (max-width: 850px) {
    .report__btn {
        max-width: 190px;
        height: 55px;
    }
}

@media (max-width: 650px) {
    .report__wrap {
        flex-wrap: wrap;
        height: initial;
        padding: 25px;
        justify-content: center;
    }

    .report__btn {
        margin-right: auto;
    }

    .report__img {
        width: 80px;
        height: 88px;
    }
}

@media (max-width: 590px) {
    .report {
        padding: 30px 0 30px;
    }
}

@media (max-width: 480px) {
    .report__img {
        display: none;
    }

    .report__content {
        width: 100%;
        text-align: center;
    }

    .report__content span {
        max-width: initial;
    }
}

/* \REPORT */