.valid-dates {
    text-align: center;
}
.valid-dates p {
    font-weight: 700;
    font-size: 1.6875rem;
    color: var(--blue);
    margin-bottom: 1rem;
}
.sale-wrapper {
    position: relative;
    margin-bottom: 2em;
    padding-bottom: 1.5em;
}
.sale-wrapper:nth-of-type(even) .flexed {
    flex-direction: row-reverse;
}
.sale-block {
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.sale-photo,
.sale-text {
    flex-basis: 50%;
}
.sale-photo {
    background-size: cover;
    background-position: center;
}
.sale-text {
    padding: 25px;
    text-align: center;
}
.sale-text > div {
    border: 1px solid #707070;
    padding: 25px 45px;
}
.sale-wrapper:nth-of-type(odd) .sale-text > div {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.sale-wrapper:nth-of-type(even) .sale-text > div {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.sale-text h2 {
    font-size: 4.375rem;
    color: var(--red);
}
.sale-text h3 {
    font-size: 2.8125rem;
    color: var(--red);
}
.sale-text p {
    font-size: 1.375rem;
    color: var(--blue);
}
.sale-text p:last-of-type{
    margin-bottom: 0;
}
.vip-price,
.featured-item {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vip-price {
    width: 200px;
    height: 200px;
    background-image: url('../png/bg-vip-price.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.featured-item {
    border-radius: 20px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
    border: 10px solid var(--red);
    background: #FFF;
    padding: 15px 25px;
}
.sale-wrapper:nth-of-type(odd) .vip-price,
.sale-wrapper:nth-of-type(odd) .featured-item {
    left: 0;
}
.sale-wrapper:nth-of-type(even) .vip-price,
.sale-wrapper:nth-of-type(even) .featured-item {
    right: 0;
}
.vip-price > div,
.featured-item > div {
    text-align: center;
    color: var(--red);
    font-weight: 900;
    font-size: 2rem;
    line-height: 0.9;
    padding-top: 5px;
}
.vip-price > div > span,
.featured-item > div > span {
    font-family: 'Ultra',serif;
    display: block;
    font-weight: 400;
    font-size: 2.5rem;
}
.featured-item > div > span {
    text-transform: uppercase;
}
@media screen and (max-width: 1175px){
    .sale-text h2 {
        font-size: 3.75rem;
    }
}
@media screen and (max-width: 1055px){
    .sale-text h2 {
        font-size: 3.25rem;
    }
}
@media screen and (max-width: 960px){
    .sale-text h2 {
        font-size: 3rem;
    }
    .sale-text h3 {
        font-size: 2.25rem;
    }
}
@media screen and (max-width: 860px){
    .sale-block {
        max-width: 600px;
    }
    .sale-block > .flexed {
        display: block;
    }
    .sale-photo {
        height: 360px;
    }
    .vip-price,
    .featured-item {
        bottom: auto;
        top: -30px;
    }
    .sale-wrapper:nth-of-type(even) .sale-text > div,
    .sale-wrapper:nth-of-type(odd) .sale-text > div {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}
@media screen and (max-width: 700px){
    .sale-block {
        max-width: 90%;
    }
}
@media screen and (max-width: 600px){
    .sale-text h2 {
        font-size: 2.5rem;
    }
    .sale-text h3 {
        font-size: 2rem;
    }
    .sale-text {
        padding: 15px;
    }
    .sale-text > div {
        padding: 25px;
    }
    .sale-text p {
        font-size: 1.1875rem;
    }
    .sale-text a.button {
        padding: 15px;
        font-size: 1rem;
    }
}
@media screen and (max-width: 460px){
    .vip-price {
        width: 150px;
        height: 150px;
    }
    .featured-item {
        padding: 10px 20px;
    }
    .vip-price > div,
    .featured-item > div {
        font-size: 1.4rem;
    }
    .vip-price > div > span,
    .featured-item > div > span {
        font-size: 2rem;
    }
    .sale-block {
        max-width: 95%;
    }
    .sale-photo {
        height: 300px;
    }
    .sale-text h2 {
        font-size: 2rem;
    }
    .sale-text h3 {
        font-size: 1.6rem;
    }
    .sale-text p {
        font-size: 1.125rem;
    }
}