/* 

-- 01 - TYPOGRAPHY SYSTEM
  - FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

*/


/* GLOBAL VARIABLES */
:root {
    --white-color: #FFF;
    --black-color: #000;
    --gray-color: #424242;

    --primary-color: #437991;
    --secondary-color: #8EC63F;
    --tertiary-color: #FFCA00;
    --yellow-color: #ffff00;
    --red-color: #ca002c;
    --red-2-color: #ae2e0c;
    --darkred-color: darkred;

    /* --background-color-1: #E8E6EB; */
    --background-color-1: #f5f5f5;
    /* --background-color-2: #D5C2AB; */
    --background-color-2: #fff6ec;
    --background-color-3: #555938
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "IBM Plex Sans", sans-serif;
}

/* GLOBAL STYLES */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Bootstrap 5 overwriting */
.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Background Image/Color */
.background-fixed {
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background-color: var(--background-color-2); */
}

.background-fixed:after {
    content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.6;
    z-index: -1;
}

.background-viewheight {
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background-size: cover;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -2;
}

.tinted-bgr {
    background: var(--black-color);
    opacity: 50%;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    background-size: cover;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

.highlighted {
    background-color: var(--yellow-color);
    border-radius: 4px;
    padding: 1px 5px;
}

/* Banners, Paralax */
.paralax {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.prepperliberty.com/tsl/img/paralax.png');
    min-height: 130px;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 10px 15px;
}

.paralax-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(90deg, #000, #3c3c3c, #000); */
    background-color: var(--red-2-color);
    min-height: 130px;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 10px 15px;
}

.paralax p,
.paralax-custom p {
    /* font-family: "IBM Plex Sans", sans-serif; */

    margin: 0;
    padding: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}

/* Coloring */
.white-text {
    color: #FFF;
}

.text-red {
    color: #cd0000 !important;
}

/* Background Colors */
.bgr-white {
    background-color: var(--white-color);
}

.bgr-black {
    background-color: var(--black-color);
}

/* Text Formats */
.text-bold {
    font-weight: 600 !important;
}

.text-italic {
    font-style: italic !important;
}

.text-underline {
    text-decoration: underline !important;
}

/* TODO Placeholder */
.todo {
    color: #555;
    border: 1px solid #000;
}

.todo p {
    margin: 0;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* Headlines */
.headline-1 {
    font-size: calc(30px + 45 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.headline-2 {
    font-size: calc(20px + 18* ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-3 {
    font-size: calc(20px + 8*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    font-style: italic;
}

.headline-1--disc {
    font-size: calc(30px + 30*((100vw - 350px) /(1920 - 350)));
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.headline-2--disc {
    font-size: calc(22px + 25*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-3--disc {
    font-size: calc(25px + 25*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-bonus--upper {
    font-size: calc(20px + 4 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.headline-bonus {
    font-size: calc(30px + 18 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    text-align: center;
    color: darkred;
    margin-bottom: 0;
}

.headline-bonus--subhead {
    font-size: calc(22px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.headline-bonus--pages {
    font-size: calc(22px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.headline-banners {
    font-size: 40px;
    font-size: calc(25px + 22 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600 !important;
    margin: 15px 0;
}


/* Sections, Containers, Boxes */
.headline-section>*,
.headline-section--tsl>* {
    /* font-family: 'nobel' !important; */
}

.headline-section {
    color: #FFF;
    padding: 20px 25px 20px 25px;
    max-width: 1300px
}

.tsl-section {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    background-color: var(--white-color);
}

.tsl-section:nth-child(1) {
    margin-top: 20px;
}

.tsl-section:nth-child(2) {
    margin-top: 20px;
}

.tsl-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 50px;
}

.tsl-paragraphs.reset {
    padding: 0 10px;
}

.vsl-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 50px;
}

.custom-list,
.custom-list--alarm-bell {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tsl_paragraphs_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tsl_paragraphs_inner--figure {
    margin-bottom: 0;
}

@media (max-width: 769px) {
    .tsl_paragraphs_inner--figure.bottom {
        margin-bottom: 20px !important;
    }

    .tsl_paragraphs_inner--figure.top {
        margin-top: 20px !important;
    }
}

.vsl-paragraphs>p,
.tsl_paragraphs_inner>p,
.tsl-paragraphs>p,
.custom-list,
.custom-list--check-p,
.custom-list--x-p,
.custom-list--alarm-bell {
    font-size: calc(20px + 8 * ((100vw - 350px) / (1920 - 350)));
    /* font-family: Arial, Helvetica, sans-serif; */
    margin: 0;
}

.custom-list--check-bullet {
    display: inline;
    max-width: 30px !important;
}

.custom-list--check-p,
.custom-list--x-p {
    display: inline;
}

.custom-list,
.custom-list--alarm-bell,
.custom-list--x-p {
    list-style: none;
    margin: 0px 60px 0px;
}

@media (max-width: 768px) {

    .custom-list,
    .custom-list--alarm-bell,
    .custom-list--x-p {
        list-style: none;
        margin: 0px 30px 0px;
    }
}

@media (max-width: 425px) {

    .custom-list,
    .custom-list--alarm-bell,
    .custom-list--x-p {
        list-style: none;
        margin: 0px 10px 0px;
    }
}

.custom-list li,
.custom-list--alarm-bell li,
.custom-list--x-p li {
    position: relative
}

.custom-list--x-p li {
    padding-bottom: 10px;
}

.custom-list--x-p li:last-child {
    padding-bottom: 0px;
}

.custom-list li:before {
    content: "\2713";
    color: darkred;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

.custom-list--alarm-bell li:before {
    content: url('../img/alarm-filled.svg');
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em;
    position: absolute;
    line-height: 1.9;
}

.custom-list--x-p li:before {
    content: "❌";
    display: inline-block;
    margin-left: -1.5em;
    position: absolute;
}

/* Specials */
.special-container {
    border: 2px solid #584f47;
    padding: 20px 25px;
    box-shadow: 15px 15px #584f47;
    margin-bottom: 20px;
}

/* Special Banner for Guarantee */
.special-banner {
    max-width: 1170px;
    padding: 30px 70px;
    margin-left: auto;
    margin-right: auto;
    background-color: #6b6b6e;
}

.special-banner .special-header:first-child {
    font-size: calc(24px + 16 * ((100vw - 350px) / (1920 - 350)));
}

.special-banner .special-header:last-child {
    font-size: calc(18px + 12 * ((100vw - 350px) / (1920 - 350)));
}

/* Miscelaneous */
.delimiter {
    margin: 30px 0;
    border-top: 1px solid #333;
}

figcaption {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
}

figcaption.special-caption {
    text-align: center;
    font-size: calc(16px + 3 * ((100vw - 350px) / (1920 - 350)));
    font-style: italic;
    margin-top: 5px;
    color: #6e6e6e;
}

/* QUERIES */
@media (max-width: 575px) {
    .tsl-section:nth-child(1) {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .headline-section {
        padding: 10px 22px 10px;
    }

    .vsl-paragraphs {
        padding: 0px 10px 30px;
    }

    .vsl-paragraphs:first-child {
        display: none;
    }

    .tsl-paragraphs {
        padding: 48px 30px;
    }

    .video_container {
        min-height: calc(177.778vw) !important
    }
}

@media screen and (max-width: 767px) {
    .video_vimeo {
        height: calc(177.778vw) !important
    }
}

/* Break (<br />) for desktop only */
@media (min-width: 1025px) {
    .line-break_mobile br {
        /* display: none !important; */
    }

    .line-break_mobile::after {
        /* content: ' '; */
        /* display: inline; */
    }
}

@media (max-width: 1024px) {
    br:not(.line-break br) {
        display: none
    }

    .responsive-br::after {
        content: ' ';
        display: inline;
    }

    .line-break_mobile br {
        display: inline !important;
    }
}

/* References Custom Styling */
.ref-text p {
    color: #9C9C9C !important;
    font-size: 13px !important;
}

.ref-link {
    word-break: break-all;
}

.accordion-button {
    font-size: 1.2em !important;
    font-weight: bold;
    border: 1px solid #7f1619 !important;
}

.accordion-button:focus {
    border-color: #7f1619 !important;
    box-shadow: none !important;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: black !important;
    background-color: white !important;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

/* Vimeo Video Container overwriting */
/* Vimeo_video */
.video_container {
    max-width: 1170px !important;
    min-width: 240px !important;
    margin: 0 auto !important;
}

.video {
    align-self: center;
    justify-self: center;
}

.video iframe {
    height: 300px;
}

/* for TTB BUTTONS */
#action_div {
    display: none;
}

/* VSL Sound Icon-Text */
.sound-icon {
    background: url('https://www.prepperliberty.com/statics/images/Audio_Icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: auto;
    width: 25px;
    padding-right: 30px;
}

.sound-on p {
    color: rgb(0, 0, 0);
    margin: 0px !important;
    font-size: 18px;
}

/* Bootstrap iframe custom ratios - Vertical */
.ratio-16x9-custom {
    --bs-aspect-ratio: calc(9/16 * 180%);
}

@media(max-width: 575px) {
    .ratio-16x9-custom {
        --bs-aspect-ratio: calc(9/16 * 300%);
    }
}

/* Testimonial Videos */
.video-testimonial--box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
}

.video-testimonials--name {
    color: gray;
    text-align: center;
}

/* Second tesimonial style */
.testimonial-2-box {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #000;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 10px solid var(--red-2-color);
}

.testimonial-2-box *,
.testimonial-2-box *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.testimonial-2-box--inner {
    padding: 2rem 1rem;
}

.testimonial-2-box--inner:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: var(--red-2-color);
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -35px;
    width: 60px;
}

.testimonial-2-box .testimonial-2-author {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
}

.testimonial-2-box .testimonial-2-quote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
}

.testimonial-2-quote {
    font-size: calc(15px + 6*((100vw - 350px) /(1920 - 350)));
}

.testimonial-2-rating {
    font-size: 20px;
    margin: 10px 0 10px;
}

.standout-testimonial {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px -2px 4px, rgba(0, 0, 0, 0.3) 0px 0px 13px -3px, var(--red-2-color) 0px -3px 0px;
}

.standout-testimonial p {
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
}

.standout-testimonial-author {
    color: #3c3c3c;
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
    text-align: right;
    font-weight: bold;
}

.standout-testimonial-rating {
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
    margin: 10px 0 10px;
    text-align: center;
}

/* Buy Buttons */
@media (min-width: 576px) {
    .big-btn {}

    .small-btn {
        /* padding: 0 24px; */
    }

    .small-btn img,
    .big-btn img {
        transition: transform 0.5s ease;
    }

    .small-btn img:hover,
    .big-btn img:hover {
        transform: scale(1.02);
    }
}

/* @media (max-width: 575px) {

    .big-btn,
    .small-btn:not(:last-of-type) {
        padding-bottom: 20px;
    }
} */

/* CTA BUTTON */
.cta-btn,
.cta-btn:link,
.cta-btn:visited {
    display: block;

    color: var(--white-color);
    font-size: calc(25px + 15 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #000;
    background-color: #ffd814;
    border-radius: 5px;

    /* width: 80%; */
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 10px;
    height: auto;

    transform: scale(1);
    animation: pulsing 1s infinite;

    cursor: pointer;
}

.cta-btn:active,
.cta-btn:hover {
    color: #000;
    background-color: #f7ca00;
}

@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .3);
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.our-customers-say {
    font-size: calc(16px + 2*((100vw - 350px) /(1920 - 350))) !important;
    text-align: center;
}

/* FAQ */
.faq-title {
    font-size: calc(30px + 8*((100vw - 350px) /(1920 - 350)));
    padding: 20px 0;
    margin: 0;
    color: white;
    font-weight: 500;
    text-align: center;
}

.accordion-faq {
    background-color: var(--red-2-color);
    padding: 0px 75px 40px;
    border-radius: 15px !important;
}

.accordion-item-faq {
    background: transparent;
    margin-bottom: 15px;
    border: none;
}

.accordion-button-faq {
    /* background: #ebebeb; */
    /* border-top-left-radius: 2.1875rem !important;
    border-top-right-radius: 2.1875rem !important; */
    border-radius: 15px 15px 15px 15px !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button-faq:not(.collapsed) {
    background-color: #ececec !important;
}

.accordion-body-faq {
    color: black;
    background: white;
    border-radius: 0 0 15px 15px !important;
    /* border-bottom-right-radius: 2.1875rem;
    border-bottom-left-radius: 2.1875rem; */
    padding-top: 40px;
    margin-top: -30px;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    padding-top: 30px;
    margin-top: -30px;
    border-radius: 0 0 15px 15px !important;
    /* border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 50% !important; */
}

.outside-tsl {
    padding: 0 50px 40px;
}

.outside-tsl figcaption.special-caption {
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .outside-tsl {
        padding: 0 0 40px;
    }

    .outside-tsl .delimiter {
        margin-left: 40px;
        margin-right: 40px;
    }

    .accordion-faq {
        border-radius: 0 !important;
        padding: 0px 30px 40px;
    }

    .accordion-ref {
        margin-left: 30px;
        margin-right: 30px;
    }

    .outside-tsl figcaption.special-caption {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 425px) {
    .accordion-faq {
        padding: 0px 20px 40px;
    }

    .accordion-ref {
        margin-left: 20px;
        margin-right: 20px;
    }

    .outside-tsl figcaption.special-caption {
        margin-left: 20px;
        margin-right: 20px;
    }
}


/* Video Testimonials Stuff */
.video-testimonial--box-inner {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-overlay.active {
    display: flex;
}

.video-overlay-bgr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
}

.overlay-darken {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.video-overlay.active {
    display: flex;
    /* show when the video ends */
}

.video-overlay h2 {
    margin: 20px;
    color: white;
    text-align: center;
}

.video-overlay p {
    margin: 10px;
    color: white;
    text-align: center;
}

.video-overlay a {
    padding: 10px 20px;
    /* background-color: #009578; */
    color: black;
    text-decoration: none;
    border-radius: 5px;
}


.video-control-bar {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    bottom: .8em;
    left: .8em;
    right: .8em;
    height: 3.2em;
}

.replay-btn-container {
    width: 5.6em;
    height: 3.2em;
    margin: 0 .8em 0 0;
}

.video-testimonial--box-replay-btn:hover,
.video-testimonial--box-replay-btn:focus {
    background-color: #00adef;
}

.video-testimonial--box-replay-btn {
    font-family: inherit;
    border-radius: 4px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    background-color: rgba(0, 0, 0, .9);
    width: 5.6em;
    height: 3.2em;
    color: #fff;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    border: none;
    appearance: none;
    z-index: 19;
    background-color: #454545;
    transform: translateZ(0);
    transition: opacity .25s ease-out, background-color 40ms, color 40ms;
}

.video-testimonial--box-replay-btn-svg {
    width: 2em;
    height: 2em;
    transform: scaleX(-1);
    fill: #FFF;
}

.video-testimonial--box-replay-btn-tag {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.video-testimonial--box-button-play-btn-tag-text {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .9);
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2.66667em;
    padding: .66667em 1em;
    height: 2.66667em;
    line-height: 1.25em;
    border-radius: 4px;
    transition: opacity .15s ease-out;
    position: absolute;
    font-weight: 700;
    white-space: pre;
    transform: translateX(-50%);
    cursor: default;
}

@media (max-width: 575px) {
    .video-overlay h2 {
        margin: 0px 30px 10px 30px;
        font-size: 20px;
    }

    .video-overlay p {
        margin: 0px 10px 10px 10px;
        font-size: 13px;
    }

    .video-overlay a {
        padding: 3px;
        font-size: calc(20px + 20 * ((100vw - 350px) / (1920 - 350)));
    }

    .video-overlay .cta-btn,
    .video-overlay .cta-btn:link,
    .video-overlay .cta-btn:visited {
        max-width: 280px;
    }

    .video-control-bar {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        bottom: 0;
        left: 0;
        right: unset;
        height: 3.2em;
    }

    .replay-btn-container {
        width: 5.6em;
        height: 1.3em;
        margin: 0 0 0 3px;
    }

    .video-testimonial--box-replay-btn {
        width: 56px;
        height: 32px;
    }

    .video-testimonial--box-replay-btn-svg {
        width: 1.3em;
        height: 1.3em;
        transform: scaleX(-1);
    }
}

.newspaper {
    background-image: url(https://products.thegoodprepper.org/vsl_tsl/img/textures/beige-paper.png);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    background-color: var(--beige-color);
    position: relative;
}

@media (max-width: 757px) {
    .newspaper {
        gap: 5px;
        padding: 25px;
    }
}

.newspaper:before {
    position: absolute;
    content: '';
    background: url("https://products.thegoodprepper.org/vsl_tsl/img/textures/usa-flag.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 435px;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
    background-position: top;
    opacity: 0.2;
}

.newspaper h3 {
    font-family: inherit
}

.newspaper p,
.newspaper span {
    font-family: inherit;
    font-size: calc(18px + 8*((100vw - 350px) /(1920 - 350)));
    line-height: 30px;
    margin: 0;
    font-weight: 400;
    color: black;
}

/* Buy Buttons Grid System */
.buy-btns-grid {
    display: grid;
    grid-template-rows: 1;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}

@media(max-width: 575px) {
    .buy-btns-grid {
        grid-template-rows: repeat(3, auto);
        grid-template-columns: 1fr;

        row-gap: 30px;

        justify-items: center;
        align-items: center;
    }

    .buy-btns-grid .grid-item-1 {
        grid-row: 3 / -1;
        grid-column: 1 / 2;


    }

    .buy-btns-grid .grid-item-6 {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    .buy-btns-grid .grid-item-3 {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }
}