.osago {
    position: relative;
    overflow: hidden;
}

.osago__main {
    width: calc(280 * 100vw / 580);
    max-width: 280px;
}

.osago__title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 5px;
}

.osago__text {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.osago__button {
    display: inline-block;
    padding: 12px 26px;
    margin-top: 20px;

    font-size: 16px;
    line-height: 24px;
    color: var(--primary);
    text-decoration: none;
    text-align: center;

    border-radius: 12px;
    background-color: rgb(from var(--primary) r g b / 10%);

    transition: all .3s ease-in-out;
    cursor: pointer;
}

.osago__picture {
    position: absolute;
    z-index: 1;
}

.osago__picture-logo {
    top: 20px;
    right: 20px;
    max-width: 120px;
    z-index: 10;
}

.osago__picture-car {
    bottom: 20px;
    right: 0;
    width: calc(248 * 100vw / 580);
    max-width: 248px;
}

@media (min-width: 576px) {
    .osago__button:hover {
        background-color: rgb(from var(--primary) r g b / 20%);
    }
}

@media (max-width: 480px) {
    .osago__main {
        width: 100%;
        max-width: 100%;
    }

    .osago__title {
        margin-top: 35px;
    }

    .osago__button {
        display: block;
    }

    .osago__picture-logo {
        right: unset;
        left: 10px;
    }

    .osago__picture-car {
        display: none;
    }
}