.go-variants {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px 20px 260px;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 10px;
    background: var(--secondary-color);
    @media (width <= 768px) {
        flex-wrap: wrap;
        padding: 20px 15px;
    }
}

.go-variants__img {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 150px;
    height: 151px;
    overflow: hidden;
    & img {
        position: absolute;
        bottom: -44px;
        width: 100%;
        height: 100%;
    }
    @media (width <= 768px) {
        display: none;
    }
}

.go-variants__text {
    width: 500px;
    flex-shrink: 0;
    & .h3 {
        margin-top: 0;
        margin-bottom: 5px;
    }
    & p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 0;
    }
    @media (width <= 768px) {
        width: auto;
        flex-shrink: unset;
        margin-bottom: 20px;
    }
}

.go-variants__btn {
    width: 300px;
    flex-shrink: 0;
    border:1px solid transparent;
    &:hover {
        border-color: #212121;
    }
    @media (width <= 768px) {
        width: 100%;
    }
}