@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
}

.body-content {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 20px;
}

.newsletter-container {
    max-width: 1080px;
    width: 100%;
    margin: auto;
}

.newsletter-container .message-container {
    width: 100%;
    padding: 40px 20px;
}

.promos-container {
    padding: 80px;
    background-color: transparent;
    background-image: radial-gradient(at center center, #5D606D 0%, #2F3137 100%);
    display: flex;
    flex-direction: column;
}

.promos-container h2 {
    font-size: 48px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 50px;
    margin-top: 0;
}

.promos-wrapper {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
}

.promo-item-container {
    width: calc(33.3333% - 60px);
    height: 100%;
}

.promo-item-header {
    width: 100%;
    padding: 10px;
    background: #BE101D;
    border-radius: 3px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    display: block;
    text-align: center;
    height: fit-content;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promo-item {
    position: relative;
    border: solid 3px #BE101D;
    border-radius: 3px;
    transition: border-color 0.3s;
    cursor: default;
    text-align: center;
    background-color: #ffffff;
    height: 100%;
}

.promo-item img {
    min-height: 242px;
    width: 100%;
    object-fit: cover;
}

.promo-body {
    padding: 28px 24px 24px;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
}

.promo-body h3 {
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    padding: 8px 0;
    margin: 0;
}

.promo-body .price_wrapper {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin: 3px 0 0;
    display: block;
}

.promo-body .price_wrapper ins {
    color: #be101d;
    text-decoration: none;
}

.woocommerce-Price-amount {
    font-size: 24px;
    line-height: 30px;
    text-decoration: none;
}

.promo-body .price_wrapper del {
    opacity: 1;
    color: #bdbdbd;
    margin: 0 10px 0 0;
}

.promo-body .price_wrapper small {
    font-weight: 400;
    color: #be101d;
}

.price_wrapper small::before {
    content: "(soit";
    display: inline-block;
    margin-right: 5px;
}

.price_wrapper small::after {
    content: ")";
    display: inline-block;
}

.promo-body .price_wrapper del .woocommerce-Price-amount,
.promo-body .price_wrapper small .woocommerce-Price-amount {
    font-size: 16px;
    line-height: 24px;
}

.button {
    font-family: Lato, sans-serif;
    text-transform: uppercase;
    font-style: normal;
    color: #ffffff;
    background: #be101d;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    padding: 16px 36px;
    border-radius: 3px;
    letter-spacing: .050em;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 75px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    cursor: pointer;
}

form .button {
    margin-top: 60px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 1079px) {
    .promos-wrapper {
        gap: 30px;
    }

    .promo-item-container {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 768px) {
    .promos-wrapper {
        gap: 40px;
    }

    .promo-item-container {
        width: 100%;
    }

    .newsletter-container .message-container {
        padding: 20px;
    }

    .promos-container {
        padding: 40px;
    }
}