<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hangingBack {
    background-color: #661C33;
    width: 100%;
    height: 200px;
    padding: 45px 15px;
}
.hangingBack &gt; h2 {
    font-family: "Vast Shadow", cursive;
    font-size: 40px;
    color: white;
}
.cardsContainer {
    margin-top: -90px;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.cardsContainer.oneItem {
    grid-template-columns: 1fr;
}
.cardsContainer.twoItem {
    grid-template-columns: repeat(2, 1fr);
}
.cardsContainer.card {
    padding: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    max-width: 425px;
    justify-self: center;
}
.cardsContainer.card &gt; img {
    width: 100%;
    height: 195px;
    object-position: center;
    object-fit: cover;
}
.cardsContainer.card &gt; .content {
    padding: 10px 7px;
}
.cardsContainer.card &gt; .content &gt; h4 {
    font-weight: bold;
}
.cardsContainer.card &gt; .content &gt; .readMore a {
    font-size: 20px;
    font-weight: bold;
    color: black;
}
.cardsContainer.card &gt; .content &gt; .readMore a:hover {
    text-decoration: underline;
}
.standaloneHeader {
    background-color: #661C33;
    width: 100%;
    padding: 30px 15px;
}
.standaloneHeader h3{
    font-family: "Vast Shadow", cursive;
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 0;
    color: white;
}
.standaloneHeader p {
    text-align: center;
    margin-bottom: 0;
    color: white;
    font-size: 36px;
    line-height: 40px;
}
.lpProductSlider .slideContainer {
    list-style: none;
    margin: 0;
    flex-grow: 1; flex-shrink: 0;
    display: flex;
    padding: 0 5px 15px;
}
.lpProductSlider .slideContainer .slide{
    width: 285px;
    flex-shrink: 0;
}
.lpProductSlider .slideContainer .slideContent {
    height: 325px;
    border: solid 1px #f3f3f3;
    box-shadow: 0 3px 3px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    text-align: center;
    margin-right: 25px;
}
.lpProductSlider .slideContainer .slideContent .productTitle {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}
.lpProductSlider .slideContainer .slideContent .productDetails {
    color: #999;
    font-size: 14px;
    line-height: 1;
}
.lpProductSlider .slideContainer .slideContent .productPrice {
    font-size: 18px;
    color: #661C33;
    font-weight: normal;
}
.lpProductSlider .slideContainer .slide img {
    width: 100%;
    height: 175px;
    object-fit: contain;
    object-position: center;
}
.mtmSliderNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: #661C33 !important;
    border-radius: 50%;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-decoration: none;
}
.lpProductSlider h3 {
    color: #661C33;
}
.videoList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.videoList.oneCol {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: auto;
}
.videoList .videoEntry {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;
}
.videoList .videoEntry .videoTitle {
    color: #661C33;
    margin-bottom: 0;
    font-weight: bold;
}
.videoList .videoEntry .videoDesc {
    font-size: 18px;
}
@media(min-width: 768px) and (max-width: 990px) {
    .cardsContainer {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        margin-top: 15px;
    }
    .hangingBack &gt; h2 {
        line-height: 46px;
    }
}
@media(max-width: 760px) {
    .cardsContainer {
        grid-template-columns: 1fr;
        padding: 0;
        margin-top: 15px;
    }
    .hangingBack &gt; h2,
    .standaloneHeader h3{
        font-family: "Vast Shadow", cursive;
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 0;
        color: white;
    }
    .standaloneHeader p {
        text-align: center;
        margin-bottom: 0;
        color: white;
        font-size: 24px;
        line-height: 28px;
    }
    .lpProductSlider h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    .mtmSliderNav a {
        width: auto;
        height: auto;
        box-shadow: none;
    }
    .videoList {
        grid-template-columns: 1fr;
    }
    .videoList .videoEntry .videoDesc {
        font-size: 14px;
    }
}</pre></body></html>