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

/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {

    --font-family: 'Fira Sans', cursive;

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

    --cta-bg: #31af5b;
    --cta-text: white;

    --coupon-bg: #35962c;
    --coupon-text: #35962c;

    --features-text: #0a1a2a;

    --footer-background: white;
    --footer-text: #0a1a2a;

    --color-1: #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 rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.main .cta-button:hover {
    color: white;
}


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;
    text-transform: capitalize;
}

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

.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: 30px;
}

.coupon-code {
    border-color: var(--cta-text);
    border-radius: 99px;
    color: var(--features-text);
    background-color: white;
	display: inline-block;

}

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

/* ---- MOBILE ---- */
@media only screen and (max-width: 767px) {


    .background-body {
        background-size: auto 72%;
        background-repeat: no-repeat;
        background-position-x: 92%;
        background-position-y: top;
    }

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

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

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

}

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