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

/* CSS Variables */
:root {
    --primary-color: #0b0989;
    --secondary-color: #003b58;
    --tertiary-color: #ACC8E5;
    --black-color: #000;
    --red-color: #ff0000;
    --shadow-color: #a3a3a3;
    --main-background-color: #e6e6e6;
    --bgr-color-white: #fff;
}

/* Global Reset/Presets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: var(--main-background-color);
}

/* ------------ */

.heading-1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--primary-color);
    text-shadow: -2px 2px var(--shadow-color);
    font-family: 'Roboto', sans-serif;
}

.heading-1 span {
    font-size: 70px;
}

.heading-2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.heading-3 {
    font-size: 30px;
    font-weight: 700px;
    line-height: 1.5;
    text-align: center;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
}

p,
ul li {
    font-size: 22px;
    font-weight: 400px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

ul li {
    line-height: 1;
}

.red-text {
    color: var(--red-color);
}

.heading-bgr .heading-2 {
    background-color: var(--tertiary-color);
    padding: 20px 20px;
}

.description {
    background-color: var(--bgr-color-white);
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 20px;
}

.description p:last-child {
    margin-bottom: 0;
}

.promote {
    margin: 70px 0 0px 0;
}

.promote-p {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
    color: #7f1619;
}

.affiliate-title {
    text-align: center;
    color: #7f1619;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
}

.affiliate-link-container {
    box-shadow: inset 0px 0px 0px 6px #7f1619;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 40px;
}

.vertical-line {
    color: #7f1619;
    font-size: 36px
}

.affiliate-link-container>span {
    font-size: 20px;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.vcenter {
    display: inline-block;
    float: none;
    vertical-align: middle;
    margin-right: -4px;
}

.margin-top-fixer {
    margin-top: 20px;
}

.hero {
    margin-top: 60px;
}

.aff-link {
    word-break: break-all;
    font-weight: 600;
}

.emails {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    max-width: 900px;
}

.email-body {
    width: 95%;
}

.email-number {
    font-weight: bold;
    margin-bottom: 5px;
}

.email-subject {
    font-size: 18px;
    /* font-weight: 600; */
}

.email-body p {
    font-size: 18px;
}

a.email-link,
a.email-link:link,
a.email-link:visited {
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;

}

a.email-link:hover,
a.email-link:active {
    /* text-decoration: none; */
    cursor: pointer;
    color: var(--secondary-color);
}

.custom-list {
    display: flex;
    padding: 20px 20px 20px 50px;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    list-style: none;
}

.custom-list li {
    position: relative;
}

.custom-list li:before {
    content: "\2713";
    color: #00acb5;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 5px
}

/* Footer */
.footer-container {
    width: 950px;
    height: 130px;
    margin: auto;
    position: relative;
}

.footer-logo {
    height: 52px;
    width: 249px;
    float: left;
    position: relative;
}

.footer-links {
    width: 675px;
    height: 40px;
    margin-left: 0;
    float: left;
    position: relative;
    color: #666666;
    left: 30px;
}

.footer-links a {
    color: #666666;
    font-size: 15px;
}

.footer-links p {
    color: #666666;
    font-size: 15px;
}

.clear {
    clear: both;
}

.big-text p,
.big-text ul li {
    font-size: 26px;
}

/* ------------ */
@media (max-width: 767px) {
    .affiliate-title {
        font-size: 38px;
    }
}