/* ---- SKIN START ---- */


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');


:root {

    --font-family: 'Oswald', sans-serif, cursive;

    --pretitle-text: #e91624;
    --title-text: white;

    --cta-bg: #fff200;
    --cta-text: #000000;

    --coupon-bg: #FFFFFF;
    --coupon-text: #e91624;

    --features-text: #363636;

    --footer-background: #fafafa;
    --footer-text: #363636;

    --ui-2: #F9FAFB;
    --ui-3: #303c43;
    --brand-3: #EBCC59;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 5px;
    font-family: var(--font-family);

}


.cta-button {
    font-family: var(--font-family);
    color: var(--cta-text);
    background-color: var(--cta-bg);
    border: 2px solid var(--cta-bg);
    border-radius: 0.25rem;
}

.main .cta-button:hover {
 
}


body {
    background-color: var(--footer-background);
}

/*
header {
    background: linear-gradient(#031939, transparent);
}
*/

footer {
    color: var(--footer-text);
    background-color: var(--footer-background);
}



.main-box {
    /*
    background-color: #1f1f1f1e;
    box-shadow: 0px 0px 60px 40px #1f1f1f1e;
*/
}


.main .hero-pretitle {
    color: var(--pretitle-text);
    text-shadow: 0px 0px 7px #000000e0;
}

.main .hero-title {
    color: var(--title-text);
    text-shadow: 0px 0px 7px #000000e0;
}

.modal-header {
    background-color: var(--cta-bg);
}

.btn-close {
    filter: invert(13%) sepia(53%) saturate(2332%) hue-rotate(344deg) brightness(97%) contrast(93%);
    opacity: 1;
}

.modal-title {
    color: var(--cta-text);
}

.features h4 {
    color: var(--features-text);
    font-weight: bold;
}



.features .feature1,
.feature2,
.feature3 {
    height: 40px;
}

.coupon-code {
    border-color: var(--coupon-bg);
    border-radius: 99px;
    color: var(--coupon-text);
    background-color: var(--coupon-bg);

}

.coupon-code-img {
    filter: hue-rotate(300deg) brightness(0.4);
}

@media only screen and (max-width: 767px) {
    a.hero-title.mx-2.btn {
        color: var(--title-text);
        text-shadow: none;
    }

    .main-box {
        background-color: unset;
        box-shadow: unset;
    }

    .main .hero-title {
        color: var(--features-text);
        text-shadow: unset;
    }

    .main .hero-pretitle {
        color: var(--pretitle-text);
        text-shadow: unset;
    }

}

/* ---- SKIN END ---- */
