.vip-catalog {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
}

.vip-catalog .container {
    padding-right: 35px;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-catalog__description {
    margin-bottom: 20px;
    font-family: 'Myriad Pro Regular';
    font-weight: normal;
    font-size: 21px;
    line-height: normal;
    color: #333;
    text-align: center;
}

.vip-catalog__visual {
    position: relative;
}

.vip-catalog__skidka {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
}

.vip-catalog__name {
    margin-bottom: 20px;
    font-family: 'Inter Medium';
    font-weight: normal;
    font-size: 25px;
    line-height: normal;
    color: #333;
}

.vip-catalog__price {
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-catalog__old {
    margin-bottom: 10px;
    font-family: 'Inter Medium';
    font-weight: normal;
    font-size: 30px;
    line-height: normal;
    color: #666;
    text-decoration: line-through;
}

.vip-catalog__new {
    font-family: 'Inter Medium';
    font-weight: normal;
    font-size: 30px;
    line-height: normal;
    color: #333;
}

.vip-catalog__btn {
    padding: 24px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    letter-spacing: .12em;
    font-family: 'Inter Medium';
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    transition: background-color .3s ease-in-out;
}

.vip-catalog__btn:hover {
    background: #df8844;
    transition: background-color .3s ease-in-out;
}

.vip-catalog__title {
    margin: 0;
    margin-bottom: 20px;
    padding-top: 30px;
    font-family: 'Myriad Pro Regular';
    font-size: 35px;
    line-height: normal;
    color: #333;
    letter-spacing: unset;
    text-align: center;
}

.vip-catalog__more {
    margin-bottom: 20px;
    width: 300px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    letter-spacing: .12em;
    font-family: 'Inter Medium';
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    transition: background-color .3s ease-in-out;
}

.vip-catalog__more:hover {
    background: #999;
    transition: background-color .3s ease-in-out;
}

.vip-card-hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .vip-hero-catalog .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 576px) {
    .vip-catalog__more {
        width: 100%;
    }

    .vip-catalog__description {
        font-size: 18px;
    }
}