/* Staging font styles. Production gets pulled through the server at fonts.css */
@font-face {
    font-family: 'Spartan';
    src: url("./fonts/Spartan-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-Regular.ttf") format('truetype');
}
/* =========================================================================== */

:host {
    display: block;
    margin: 0;
    padding: 0;
}

.flex-1 {
    flex: 1;
}

footer {
    font-size: 16px;
    margin-bottom: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-columns {
    display: flex;
    width: 100%;
    z-index: 1;
    padding: 80px 0;
}

.footer-column {
    flex: 1;
    flex-direction: column;
}

.footer-columns-container {
    display: flex;
    max-width: 1320px;
}

.button-style-1 {
    position: relative;
    background-color: #D02030;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    line-height: 1.4;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    z-index: 1;
    border: none;
}

    .button-style-1:hover {
        color: white !important;
        background-color: #005da8;
        text-decoration: none;
    }

.button-style-2 {
    position: relative;
    background-color: #005da8;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    line-height: 1.4;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    z-index: 1;
    border: none;
}

    .button-style-2:hover {
        color: white !important;
        background-color: #D02030;
        text-decoration: none;
    }

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    font-size: 15px;
    color: white;
    text-align: center;
    background: rgba(255, 255, 255, 0.102);
    border-radius: 50%;
    transition: all 0.25s ease;
}

    .footer-social:hover {
        background-color: #005da8;
        text-decoration: none;
    }

.footerContent {
    text-align: center;
    border-top: 1px solid #252525;
    min-width: 100%;
    padding: 25px 0;
    flex: 1;
    opacity: 1;
    color: white;
    z-index: 1;
    /*position: absolute;
        bottom: 0;*/
}
    /**/
    .footerContent a {
        color: white;
        font-weight: bold;
    }

a {
    font-family: 'Roboto', Arial;
    color: #ffffff !important;
    /*font-weight: bold;*/
    text-decoration: none !important;
    transition: .25s ease;
    cursor: pointer;
}

    a:hover {
        color: #005da8 !important;
    }

.footer {
    background-color: black;
    bottom: 0;
    /*height: 386px;*/
    position: relative;
    overflow: hidden;
}

.background-outer {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.2;
    text-align: center;
}

.background-inner {
    position: relative;
    float: right;
    right: 50%;
    height: 100%;
}

    .background-outer img {
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        height: 100%;
        position: relative;
        right: -50%;
    }

h4 {
    font-family: "Spartan", Arial;
    font-weight: 700 !important;
    letter-spacing: .35px;
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
}

ul {
    padding-left: 0;
}

    ul li {
        list-style-type: none;
    }

p {
    font-family: 'Roboto', Arial;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
}

.affiliate-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.socials-container {
    display: flex;
}

.ad-space-wrap {
    max-width: 1320px;
    text-align: center;
    margin: 0 auto;
}

.ad-label {
    color: #6c6f72;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    font-style: normal;
}

.ad-spacer {
    height: 30px;
}

@media screen and (max-width: 1100px) {
    h4 {
        margin-top: 30px;
        margin-bottom: 10px !important;
        font-size: 22px;
    }

    .footerContent {
        top: 120px;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-columns-container {
        display: block;
    }

    .background-outer img {
        display: none;
    }

    .button-style-1 {
        margin-bottom: 5px;
    }

    .ad-spacer {
        height: 15px;
    }

    .ad-label {
        font-size: 12px;
    }

    #ad-host-footer {
        margin: 0 10px;
        overflow: hidden;
    }
}

@media screen and (max-width: 1425px) {
    .background-outer img {
        display: none;
    }

    .button-style-1 {
        margin-bottom: 5px;
    }

    .footer-columns-container {
        padding: 0 15px;
    }
}

/* Utility classes */
.mb-3 {
    margin-bottom: 1rem;
}

.mb-35 {
    margin-bottom: 1.25rem;
}

.mb-4{
    margin-bottom: 1.5rem;
}

.mb-5{
    margin-bottom: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.px-0{
    padding-left: 0;
    padding-right: 0;
}